【发布时间】:2023-03-12 11:55:01
【问题描述】:
我是飞镖新手 所以我对snackBar 只出现在正文的页脚感到沮丧。 及以上的 persistentFooterButtons 和 bottomNavigationBar 请有人帮我修复屏幕末尾的小吃吧。
这是我的代码:
Widget build(BuildContext context) {
return Scaffold(
key: scaffoldKey,
backgroundColor: Colors.white,
appBar: AppBar(),
body: SafeArea(
Material(
color: Color(0xFF43bdd2),
borderRadius: BorderRadius.circular(25.0),
child: MaterialButton(
onPressed:(){ _showSnack; },
child: Text('إرسال'),
),
), ),
persistentFooterButtons: <Widget>[
Text('hello everyone'),
],
bottomNavigationBar: BottomAppBar(
child: Container(
padding: EdgeInsets.only(bottom: 3),
child: Text("©Copyright flutter 2020",style: TextStyle(color:Colors.black,fontWeight: FontWeight.bold),textAlign: TextAlign.center,),
),
),);}
_showSnack(){scaffoldKey.currentState.showSnackBar(SnackBar(content: Text('hi, here i am a snackBar'),)) ;}
【问题讨论】:
-
请添加屏幕截图,说明您目前获得的内容..以及您想要获得的内容..
标签: flutter dart snackbar scaffold