What is Theme in Flutter?
Used to define the colors, fonts, and overall look of the app.
Example:
Used to define the colors, fonts, and overall look of the app.
Example:
MaterialApp( theme: ThemeData( primarySwatch: Colors.blue, textTheme: TextTheme(bodyMedium: TextStyle(fontSize: 18)), ), );
Comments
Post a Comment