Last changes not published
This commit is contained in:
parent
ac65ccf990
commit
21ec08303a
43 changed files with 607 additions and 613 deletions
|
|
@ -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),
|
||||
);
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue