Unverified Commit 0eec5ad0 authored by Hans Muller's avatar Hans Muller Committed by GitHub

Fixed an uninitialized bool in the gallery FAB demo (#16012)

parent 39eeec47
......@@ -44,7 +44,7 @@ class _TabsFabDemoState extends State<TabsFabDemo> with SingleTickerProviderStat
TabController _controller;
_Page _selectedPage;
bool _extendedButtons;
bool _extendedButtons = false;
@override
void initState() {
......
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