Answers for "flutter 2.5 appbar text theme"

3

flutter appbar text color

appBar: AppBar(
	title: Text('AppBar'),
    backgroundColor: Colors.white, // appbar color.
    foregroundColor: Colors.black, // appbar text color.
   ),
Posted by: Guest on August-20-2021
0

appbar theme flutter

appBarTheme: AppBarTheme().copyWith(
          textTheme: TextTheme(
            headline6: TextStyle(
              fontFamily: 'Open Sans',
              fontWeight: FontWeight.bold,
              fontSize: 20,
            ),
          ),
        ),
Posted by: Guest on March-15-2021

Code answers related to "Dart"

Browse Popular Code Answers by Language