chore: publish version 1.1.1 #43
1 changed files with 10 additions and 8 deletions
|
@ -125,14 +125,16 @@ class _RecurringEntriesViewState extends State<RecurringEntriesView> {
|
|||
floatingActionButton: FloatingActionButton(
|
||||
child: const Icon(Icons.add),
|
||||
onPressed: () {
|
||||
Navigator.of(context).push(
|
||||
platformRoute(
|
||||
(p0) => CreateRecurringEntryView(
|
||||
w: selectedWallet!,
|
||||
locale: locale,
|
||||
),
|
||||
),
|
||||
);
|
||||
Navigator.of(context)
|
||||
.push(
|
||||
platformRoute(
|
||||
(p0) => CreateRecurringEntryView(
|
||||
w: selectedWallet!,
|
||||
locale: locale,
|
||||
),
|
||||
),
|
||||
)
|
||||
.then((value) => setState(() {}));
|
||||
},
|
||||
),
|
||||
body: Center(
|
||||
|
|
Loading…
Reference in a new issue