chore: bump version #37

Merged
hernik merged 15 commits from dev into main 2024-02-26 23:35:49 +01:00
Showing only changes of commit af04accabf - Show all commits

View file

@ -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(