Skip to content

Instantly share code, notes, and snippets.

@pradeeprjth
Last active August 5, 2021 10:17
Show Gist options
  • Save pradeeprjth/abf9c0b577df2408e7c731ab68f143e9 to your computer and use it in GitHub Desktop.
Save pradeeprjth/abf9c0b577df2408e7c731ab68f143e9 to your computer and use it in GitHub Desktop.
@override
Widget build(BuildContext context) {
return MaterialApp(
debugShowCheckedModeBanner: false,
title: 'Professnow',
home: MyBottomNavigationButton(),
routes: <String, WidgetBuilder>{
'/home': (BuildContext context) => Homepage(),
'/profile': (BuildContext context) => Profile(),
'/account': (BuildContext context) => Account(),
'/details': (BuildContext context) => CurrentBookingDetails(),
},
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment