Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save shafayathossain/3d3864472e2d603942b79f2c16bee056 to your computer and use it in GitHub Desktop.

Select an option

Save shafayathossain/3d3864472e2d603942b79f2c16bee056 to your computer and use it in GitHub Desktop.
Flutter Preview - Preview Material App Wrapper Function
Widget materialAppWrapper(Widget child) {
return MaterialApp(
theme: ThemeData(
colorScheme: ColorScheme.fromSeed(seedColor: Colors.deepPurple),
useMaterial3: true,
),
darkTheme: ThemeData(
colorScheme: ColorScheme.fromSeed(
seedColor: Colors.deepPurple,
brightness: Brightness.dark,
),
useMaterial3: true,
),
home: Scaffold(
body: child,
),
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment