diff --git a/lib/src/widgets/left_menu.dart b/lib/src/widgets/left_menu.dart index b7f9c7f..6778862 100644 --- a/lib/src/widgets/left_menu.dart +++ b/lib/src/widgets/left_menu.dart @@ -140,6 +140,38 @@ class _LeftMenuState extends State 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(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(text: '© 2021 - 2024\n'), + TextSpan(text: 'Quickemu Project\n', style: TextStyle(fontWeight: FontWeight.bold)), + ], + ), + ), + ], + ), + ), ], ), );