fix: unify FAB style

This commit is contained in:
Matyáš Caras 2024-02-10 14:59:33 +01:00
parent d3b0b1bee3
commit b4cbfe8f08
Signed by untrusted user who does not match committer: hernik
GPG key ID: 2A3175F98820C5C6
2 changed files with 3 additions and 1 deletions

View file

@ -92,6 +92,9 @@ class _HomeViewState extends State<HomeView> {
child: Scaffold( child: Scaffold(
drawer: makeDrawer(context, 1), drawer: makeDrawer(context, 1),
floatingActionButton: SpeedDial( floatingActionButton: SpeedDial(
shape: const RoundedRectangleBorder(
borderRadius: BorderRadius.all(Radius.circular(16)),
),
icon: Icons.add, icon: Icons.add,
activeIcon: Icons.close, activeIcon: Icons.close,
children: [ children: [

View file

@ -125,7 +125,6 @@ class _RecurringEntriesViewState extends State<RecurringEntriesView> {
], ],
), ),
floatingActionButton: FloatingActionButton( floatingActionButton: FloatingActionButton(
shape: const CircleBorder(),
child: const Icon(Icons.add), child: const Icon(Icons.add),
onPressed: () { onPressed: () {
Navigator.of(context).push( Navigator.of(context).push(