我已经用 PreffredSize 小部件包装了 BottomAppBar,以根据要求设置其高度,但它并没有给出 Size.fromHeight(20) 应用的高度
那么如何解决呢?
bottomNavigationBar: const PreferredSize(
preferredSize: Size.fromHeight(20),
child: BottomAppBar(
padding: EdgeInsets.zero,
elevation: 0,
color: Colors.blue,
child: Row(children: [
Expanded(child: Text('Add to cart')),
Expanded(child: Text('Buy Now'))
],)
),
),