Skip to content

Commit

Permalink
Merge pull request #65 from enrique-lozano/hot-fixes
Browse files Browse the repository at this point in the history
No accounts warn not dissapearing from home screen
  • Loading branch information
enrique-lozano authored Oct 24, 2023
2 parents a73fa6a + a2c60c1 commit be0daef
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion lib/app/home/home.page.dart
Original file line number Diff line number Diff line change
Expand Up @@ -142,14 +142,15 @@ class _HomePageState extends State<HomePage> {
showDialog(
context: context,
builder: (context) {
return AlertDialog(
return AlertDialog.adaptive(
title: Text(t.home.should_create_account_header),
content: SingleChildScrollView(
child: Text(t.home.should_create_account_message)),
actions: [
TextButton(
child: Text(t.general.continue_text),
onPressed: () {
Navigator.pop(context);
Navigator.push(
context,
MaterialPageRoute(
Expand Down

0 comments on commit be0daef

Please sign in to comment.