I have a BottomAppBar()
widget
BottomAppBar(
shape: CircularNotchedRectangle(),
color: Colors.orange,
notchMargin: 5,
child:Container(),
);
And, I want to set the edge color differently like the answer from this question.
How do I change Bottom App Bar Items Color?
I'd tried to set the color of the child Container()
. However, it draws a straight line without the bump at the FloatingAppButton()
. Is there any way that I can do this?