Answers for "flutter appbar text color"

2

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

how to change appbar color in flutter

appBar: AppBar(
      title: const Text('Example'),
      backgroundColor: Colors.black,
    ),
Posted by: Guest on November-13-2020

Code answers related to "flutter appbar text color"

Code answers related to "Dart"

Browse Popular Code Answers by Language