Answers for "flutter appbar color: theme"

0

how to change appbar color in flutter

appBar: AppBar(
      title: const Text('Example'),
      backgroundColor: Colors.black,
    ),
Posted by: Guest on November-13-2020
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 "flutter appbar color: theme"

Code answers related to "Dart"

Browse Popular Code Answers by Language