We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 29a6839 commit 9802a52Copy full SHA for 9802a52
lib/widgets/core/about.dart
@@ -36,6 +36,7 @@ class _AboutPageState extends State<AboutPage> {
36
Widget build(BuildContext context) {
37
final deviceSize = MediaQuery.of(context).size;
38
final authProvider = Provider.of<AuthProvider>(context, listen: false);
39
+ final today = DateTime.now();
40
41
return Scaffold(
42
appBar: AppBar(
@@ -79,7 +80,7 @@ class _AboutPageState extends State<AboutPage> {
79
80
Padding(
81
padding: EdgeInsets.only(left: 0.225 * deviceSize.width),
82
child: Text(
- '\u{a9} 2020 - 2021 contributors',
83
+ '\u{a9} 2020 - ${today.year} contributors',
84
style: Theme.of(context).textTheme.bodySmall,
85
),
86
0 commit comments