Created
January 19, 2023 18:46
-
-
Save TarunNagaSai/40d1813714e70d4acd773f4fe3fd4cca to your computer and use it in GitHub Desktop.
this is a main dart file of the no_internet_configuration
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| void main() { | |
| runApp( | |
| GetMaterialApp( | |
| title: AppContnats.siteName, | |
| enableLog: true, | |
| debugShowCheckedModeBanner: false, | |
| defaultTransition: Transition.native, | |
| opaqueRoute: Get.isOpaqueRouteDefault, | |
| popGesture: Get.isPopGestureEnable, | |
| /// we are passing [GetRoutes.routes] to getPages. | |
| getPages: GetRoutes.routes, | |
| initialBinding: InitialBindings(), | |
| ), | |
| ); | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment