Unverified Commit 232dce96 authored by rami-a's avatar rami-a Committed by GitHub

Analyzer fix that wasn't caught in the PR originally (#38348)

parent 0f3919e5
......@@ -49,7 +49,7 @@ class _BannerDemoState extends State<BannerDemo> {
Widget build(BuildContext context) {
final Widget banner = MaterialBanner(
content: const Text('Your password was updated on your other device. Please sign in again.'),
leading: _showLeading ? CircleAvatar(child: Icon(Icons.access_alarm)) : null,
leading: _showLeading ? const CircleAvatar(child: Icon(Icons.access_alarm)) : null,
actions: <Widget>[
FlatButton(
child: const Text('SIGN IN'),
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment