Skip to content

Commit

Permalink
feat: add missing cancel button to dialog
Browse files Browse the repository at this point in the history
Squashed commit of the following:

commit 69fcc5b9950a1d4edf00f19bef65c9a1b6bc83a6
Author: Ushie <ushiekane@gmail.com>
Date:   Sat Apr 29 15:28:03 2023 +0300

    feat: change `continue anyways` to `cancel`

commit 8786bae
Author: Andris <sebokandris2009@gmail.com>
Date:   Sun Apr 23 09:40:26 2023 +0200

    feat:add continue anyway button to feature not implemented dialog
  • Loading branch information
Ushie committed Apr 29, 2023
1 parent 7230152 commit 7f203a5
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions lib/ui/views/app_selector/app_selector_viewmodel.dart
Original file line number Diff line number Diff line change
Expand Up @@ -132,6 +132,21 @@ class AppSelectorViewModel extends BaseViewModel {
],
),
),
const SizedBox(height: 10),
CustomMaterialButton(
isFilled: false,
onPressed: () {
Navigator.pop(context);
Navigator.pop(context);
},
label: Row(
mainAxisAlignment: MainAxisAlignment.center,
children: [
const SizedBox(width: 10),
I18nText('cancelButton'),
],
),
),
],
),
);
Expand Down

0 comments on commit 7f203a5

Please sign in to comment.