Last changes not published

This commit is contained in:
vjrj 2026-03-05 01:18:27 +01:00
parent ac65ccf990
commit 21ec08303a
43 changed files with 607 additions and 613 deletions

View file

@ -34,12 +34,17 @@ class CustomBottomAppBar extends StatelessWidget {
rowContents.addAll(this.actions);
return new BottomAppBar(
color: color,
hasNotch: showNotch,
child: new Row(
mainAxisAlignment: mainAxisAlignment,
children: rowContents),
);
return showNotch
? new BottomAppBar(
color: color,
shape: CircularNotchedRectangle(),
child: new Row(
mainAxisAlignment: mainAxisAlignment, children: rowContents),
)
: new BottomAppBar(
color: color,
child: new Row(
mainAxisAlignment: mainAxisAlignment, children: rowContents),
);
}
}