how to change appbar color in flutter
appBar: AppBar(
title: const Text('Example'),
backgroundColor: Colors.black,
),
how to change appbar color in flutter
appBar: AppBar(
title: const Text('Example'),
backgroundColor: Colors.black,
),
flutter app bar action button color
actions: [
Container(
margin: EdgeInsets.all(4.0),
decoration: BoxDecoration(
color: Theme.of(context).canvasColor,
shape: BoxShape.circle,
),
child: IconButton(
//shape: CircleBorder(),
color: Theme.of(context).canvasColor,
icon: FaIcon(FontAwesomeIcons.bars, size: 20, color: themeOrangeColor),
//child: FaIcon(FontAwesomeIcons.bars, size: 20, color: themeOrangeColor),
onPressed: () => Scaffold.of(context).openEndDrawer(),
),
)
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us