Skip to content

Commit

Permalink
fix: Format issues
Browse files Browse the repository at this point in the history
  • Loading branch information
wizlif committed Oct 10, 2022
1 parent 63252bf commit eb71e70
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 5 deletions.
6 changes: 2 additions & 4 deletions lib/presentation/auth/widgets/verified.dart
Original file line number Diff line number Diff line change
Expand Up @@ -80,13 +80,11 @@ class VerifiedPage extends StatelessWidget {
),
const SizedBox(height: 40),
PillButton(
onTap: () =>
context.replace(AppPage.home.toPath),
onTap: () => context.replace(AppPage.home.toPath),
text: 'Go to CrowdActions',
),
TextButton(
onPressed: () =>
context.replace(AppPage.home.toPath),
onPressed: () => context.replace(AppPage.home.toPath),
child: const Text(
'Show me all CrowdActions',
style: TextStyle(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ class ParticipationCountText extends StatelessWidget {
Widget build(BuildContext context) {
return GestureDetector(
onTap: () => context.push(
AppPage.crowdActionParticipants.toPath,
AppPage.crowdActionParticipants.toPath,
extra: crowdAction!.id,
),
child: BlocProvider<CrowdActionDetailsBloc>.value(
Expand Down

0 comments on commit eb71e70

Please sign in to comment.