Skip to content

Commit

Permalink
Update to new Flutter
Browse files Browse the repository at this point in the history
  • Loading branch information
Carapacik committed Aug 22, 2023
1 parent 43db705 commit 7afbf63
Show file tree
Hide file tree
Showing 7 changed files with 104 additions and 121 deletions.
4 changes: 2 additions & 2 deletions ios/Podfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -38,9 +38,9 @@ EXTERNAL SOURCES:
SPEC CHECKSUMS:
Flutter: f04841e97a9d0b0a8025694d0796dd46242b2854
flutter_native_splash: 52501b97d1c0a5f898d687f1646226c1f93c56ef
path_provider_foundation: eaf5b3e458fc0e5fbb9940fb09980e853fe058b8
path_provider_foundation: 29f094ae23ebbca9d3d0cec13889cd9060c0e943
share_plus: 599aa54e4ea31d4b4c0e9c911bcc26c55e791028
shared_preferences_foundation: e2dae3258e06f44cc55f49d42024fd8dd03c590c
shared_preferences_foundation: 5b919d13b803cadd15ed2dc053125c68730e5126
url_launcher_ios: 08a3dfac5fb39e8759aeb0abbd5d9480f30fc8b4

PODFILE CHECKSUM: c24c27344913105c54b95f33f73882923a0bd103
Expand Down
29 changes: 6 additions & 23 deletions lib/presentation/pages/credits/credits_page.dart
Original file line number Diff line number Diff line change
Expand Up @@ -15,22 +15,13 @@ class CreditsPage extends StatelessWidget {

static const email = 'carapacik@gmail.com';

static const rofl = [
CreditPeople('Carapacik', 'https://github.com/Carapacik')
];

static const gameDesign = [
CreditPeople('Carapacik', 'https://github.com/Carapacik'),
static const _gameDesign = [
CreditPeople('Carapacik', 'https://carapacik.github.io'),
CreditPeople('Sancene', 'https://github.com/Sancene'),
];

static const visualDesign = [
CreditPeople('Carapacik', 'https://github.com/Carapacik'),
CreditPeople('Mary Wilson', 'https://www.behance.net/bugagam'),
];

static const dictionary = [
CreditPeople('Carapacik', 'https://github.com/Carapacik'),
static const _dictionary = [
CreditPeople('Carapacik', 'https://carapacik.github.io'),
CreditPeople('Alex Dekhant', 'https://github.com/Dekhant'),
];

Expand All @@ -48,21 +39,13 @@ class CreditsPage extends StatelessWidget {
child: Column(
children: [
const SizedBox(height: 12),
_CreditCategory(
title: context.r.created_by,
peoples: rofl,
),
_CreditCategory(
title: context.r.game_design,
peoples: gameDesign,
),
_CreditCategory(
title: context.r.visual_design,
peoples: visualDesign,
peoples: _gameDesign,
),
_CreditCategory(
title: context.r.dictionary,
peoples: dictionary,
peoples: _dictionary,
),
const Spacer(),
Link(
Expand Down
2 changes: 1 addition & 1 deletion lib/presentation/pages/statistic/statistic_page.dart
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ class _StatText extends StatelessWidget {
title,
style: context.theme.ll,
textAlign: TextAlign.center,
)
),
],
);
}
Expand Down
2 changes: 1 addition & 1 deletion lib/presentation/pages/tutorial/tutorial_page.dart
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ class TutorialPage extends StatelessWidget {
color: Colors.white,
),
),
)
),
],
),
style: context.theme.blb.copyWith(color: Colors.white),
Expand Down
2 changes: 1 addition & 1 deletion lib/presentation/widgets/game_result_dialog.dart
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ void showGameResultDialog(
if (isDailyMode)
_DailyContent(isWin: result.isWin!)
else
_LevelContent(isWin: result.isWin!)
_LevelContent(isWin: result.isWin!),
],
),
),
Expand Down
Loading

0 comments on commit 7afbf63

Please sign in to comment.