feat: add authors to the left menu

This commit is contained in:
Martin Wimpress 2024-07-01 02:02:21 +01:00 committed by Martin Wimpress
parent cdbe799232
commit 8b77041cf2
1 changed files with 32 additions and 0 deletions

View File

@ -140,6 +140,38 @@ class _LeftMenuState extends State<LeftMenu> with PreferencesMixin {
],
),
),
Container(
height: 32.0,
),
Padding(
padding: const EdgeInsets.symmetric(horizontal: 16),
child: Column(
children: [
RichText(
textAlign: TextAlign.center,
text: TextSpan(
style: DefaultTextStyle.of(context).style,
children: <TextSpan>[
TextSpan(text: 'Authors\n', style: TextStyle(fontWeight: FontWeight.bold)),
TextSpan(text: 'Yannick Mauray\n'),
TextSpan(text: 'Mark Johnson\n'),
TextSpan(text: 'Martin Wimpress\n'),
],
),
),
RichText(
textAlign: TextAlign.center,
text: TextSpan(
style: DefaultTextStyle.of(context).style,
children: <TextSpan>[
TextSpan(text: '© 2021 - 2024\n'),
TextSpan(text: 'Quickemu Project\n', style: TextStyle(fontWeight: FontWeight.bold)),
],
),
),
],
),
),
],
),
);