Commit 4023b7ca authored by Alexander Aprelev's avatar Alexander Aprelev Committed by GitHub

Use const for const constructor (#12464)

parent 4e48a737
......@@ -452,7 +452,7 @@ class _BottomNavigationBarState extends State<BottomNavigationBar> with TickerPr
),
),
new ConstrainedBox(
constraints: new BoxConstraints(minHeight: kBottomNavigationBarHeight),
constraints: const BoxConstraints(minHeight: kBottomNavigationBarHeight),
child: new Stack(
children: <Widget>[
new Positioned.fill(
......
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