Skip to content

Instantly share code, notes, and snippets.

View NocturnScholar's full-sized avatar

NocturnScholar

View GitHub Profile
class NavBar extends StatelessWidget {
final NotchedShape shape;
const NavBar({
this.shape = const CircularNotchedRectangle(),
});
@override
Widget build(BuildContext context) {
return BottomAppBar(
shape: shape,