Skip to content

Commit

Permalink
format
Browse files Browse the repository at this point in the history
  • Loading branch information
cp-sidhdhi-p committed Jun 7, 2024
1 parent ca15ced commit fcb568c
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 9 deletions.
2 changes: 1 addition & 1 deletion data/lib/errors/app_error_l10n_codes.dart
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@ class AppErrorL10nCodes {
static const invalidVerificationCode = 'invalid-verification-code';
static const invalidPhoneNumber = 'invalid-phone-number';
static const tooManyRequests = 'too-many-requests';
}
}
8 changes: 2 additions & 6 deletions khelo/lib/ui/flow/home/home_screen.dart
Original file line number Diff line number Diff line change
Expand Up @@ -136,9 +136,7 @@ class _HomeScreenState extends ConsumerState<HomeScreen> {
match.teams.first.wicket,
match.current_playing_team_id ==
match.teams.elementAt(1).team.id),
const SizedBox(
height: 8
),
const SizedBox(height: 8),
],
),
),
Expand Down Expand Up @@ -226,9 +224,7 @@ class _HomeScreenState extends ConsumerState<HomeScreen> {
style: AppTextStyle.subtitle1
.copyWith(color: context.colorScheme.textPrimary),
),
const SizedBox(
height: 8
),
const SizedBox(height: 8),
Text(
context.l10n.home_screen_no_matches_description_text,
textAlign: TextAlign.center,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ class MatchDetailCommentaryView extends ConsumerWidget {
if (nextOverSummary != null &&
nextOverSummary.overNumber != overSummary.overNumber) {
children.add(BowlerSummaryView(
bowlerSummary:nextOverSummary.bowlerStatAtStart,
bowlerSummary: nextOverSummary.bowlerStatAtStart,
isForBowlerIntro: true,
));
children.add(const SizedBox(height: 24));
Expand Down
2 changes: 1 addition & 1 deletion style/lib/button/action_button.dart
Original file line number Diff line number Diff line change
Expand Up @@ -22,4 +22,4 @@ Widget actionButton(
padding: padding,
);
}
}
}

0 comments on commit fcb568c

Please sign in to comment.