Answers for "flutter appbar foregroundcolor"

1

flutter appbar foregroundcolor

appBar: AppBar(
	title: Text('AppBar'),
    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 "Dart"

Browse Popular Code Answers by Language