What is Theme in Flutter?

 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

Popular posts from this blog

1. What is Flutter?

What is FutureBuilder and StreamBuilder?