mirror of
https://github.com/HendrikRauh/inventree-app.git
synced 2026-01-13 03:26:24 +00:00
Add credits file
This commit is contained in:
parent
b293806fe3
commit
af79ee9d11
5 changed files with 50 additions and 1 deletions
|
|
@ -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
|
||||
)
|
||||
);
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue