Skip to content

Instantly share code, notes, and snippets.

@TarunNagaSai
Created January 19, 2023 18:46
Show Gist options
  • Select an option

  • Save TarunNagaSai/40d1813714e70d4acd773f4fe3fd4cca to your computer and use it in GitHub Desktop.

Select an option

Save TarunNagaSai/40d1813714e70d4acd773f4fe3fd4cca to your computer and use it in GitHub Desktop.
this is a main dart file of the no_internet_configuration
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