Skip to content

Commit

Permalink
Update back to calculator button
Browse files Browse the repository at this point in the history
  • Loading branch information
duddu committed Oct 22, 2023
1 parent c3c7c73 commit 545c090
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion lib/widgets/secondary_page.dart
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,13 @@ class BackToHomePageTextButton extends StatelessWidget {
textStyle: MaterialStateProperty.all(
Theme.of(context).textTheme.bodyMedium),
padding: const MaterialStatePropertyAll(EdgeInsets.zero)),
child: const Text('< ${locale.backToHome}'),
child: Row(children: [
Icon(
Icons.arrow_back_rounded,
size: Theme.of(context).textTheme.bodyMedium?.fontSize,
),
const Text(' ${locale.backToHome}')
]),
));
}
}

0 comments on commit 545c090

Please sign in to comment.