chore: version 1.1.0 #36

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

View file

@ -125,14 +125,16 @@ class _RecurringEntriesViewState extends State<RecurringEntriesView> {
floatingActionButton: FloatingActionButton( floatingActionButton: FloatingActionButton(
child: const Icon(Icons.add), child: const Icon(Icons.add),
onPressed: () { onPressed: () {
Navigator.of(context).push( Navigator.of(context)
.push(
platformRoute( platformRoute(
(p0) => CreateRecurringEntryView( (p0) => CreateRecurringEntryView(
w: selectedWallet!, w: selectedWallet!,
locale: locale, locale: locale,
), ),
), ),
); )
.then((value) => setState(() {}));
}, },
), ),
body: Center( body: Center(