Skip to content

Commit

Permalink
Fixed formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
vanlooverenkoen committed Jan 16, 2023
1 parent 72edcf8 commit 6bb7c22
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions example/lib/screen/home_screen.dart
Expand Up @@ -20,11 +20,13 @@ class HomeScreen extends StatelessWidget {
children: [
MaterialButton(
child: const Text('System Language (Not translated)'),
onPressed: Provider.of<LocaleViewModel>(context).onSwitchToSystemLanguage,
onPressed: Provider.of<LocaleViewModel>(context)
.onSwitchToSystemLanguage,
),
MaterialButton(
child: const Text('English (Not translated)'),
onPressed: Provider.of<LocaleViewModel>(context).onSwitchToEnglish,
onPressed:
Provider.of<LocaleViewModel>(context).onSwitchToEnglish,
),
MaterialButton(
child: const Text('Nederlands (Not translated)'),
Expand Down

0 comments on commit 6bb7c22

Please sign in to comment.