2
0
mirror of https://github.com/inventree/inventree-app.git synced 2025-06-12 10:15:32 +00:00

Add credits file

This commit is contained in:
Oliver Walters
2021-03-02 22:32:50 +11:00
parent b293806fe3
commit af79ee9d11
5 changed files with 50 additions and 1 deletions

View File

@ -24,4 +24,25 @@ class ReleaseNotesWidget extends StatelessWidget {
)
);
}
}
class CreditsWidget extends StatelessWidget {
final String credits;
CreditsWidget(this.credits);
@override
Widget build (BuildContext context) {
return Scaffold(
appBar: AppBar(
title: Text(I18N.of(context).credits),
),
body: Markdown(
selectable: false,
data: credits
)
);
}
}