-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #489 from verdigado/483-members-tools-implementing…
…-info-text 483: add not implemented yet info text
- Loading branch information
Showing
3 changed files
with
25 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,22 @@ | ||
import 'package:flutter/material.dart'; | ||
import 'package:gruene_app/app/theme/theme.dart'; | ||
import 'package:gruene_app/i18n/translations.g.dart'; | ||
|
||
class ProfilesScreen extends StatelessWidget { | ||
const ProfilesScreen({super.key}); | ||
|
||
@override | ||
Widget build(BuildContext context) { | ||
return const Center( | ||
child: Text('Profiles Screen'), | ||
final theme = Theme.of(context); | ||
return Padding( | ||
padding: const EdgeInsets.fromLTRB(24, 33, 24, 26), | ||
child: Center( | ||
child: Text( | ||
t.common.notImplementedYet, | ||
style: theme.textTheme.bodyLarge?.apply(color: ThemeColors.text), | ||
textAlign: TextAlign.center, | ||
), | ||
), | ||
); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,22 @@ | ||
import 'package:flutter/material.dart'; | ||
import 'package:gruene_app/app/theme/theme.dart'; | ||
import 'package:gruene_app/i18n/translations.g.dart'; | ||
|
||
class ToolsScreen extends StatelessWidget { | ||
const ToolsScreen({super.key}); | ||
|
||
@override | ||
Widget build(BuildContext context) { | ||
return const Center( | ||
child: Text('Tools Screen'), | ||
final theme = Theme.of(context); | ||
return Padding( | ||
padding: const EdgeInsets.fromLTRB(24, 33, 24, 26), | ||
child: Center( | ||
child: Text( | ||
t.common.notImplementedYet, | ||
style: theme.textTheme.bodyLarge?.apply(color: ThemeColors.text), | ||
textAlign: TextAlign.center, | ||
), | ||
), | ||
); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters