Last active
October 20, 2025 13:37
-
-
Save shafayathossain/3d3864472e2d603942b79f2c16bee056 to your computer and use it in GitHub Desktop.
Flutter Preview - Preview Material App Wrapper Function
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
| 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