SnackBar使用

Posted pythonclub

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了SnackBar使用相关的知识,希望对你有一定的参考价值。

注意:
build(BuildContext context)在 Scaffold.of(context)之前时,会报错,解决办法:
通过build widget来解决,如下代码。

import ‘package:flutter/material.dart‘;

main() => runApp(MaterialApp(
      home: MyHome(),
    ));

class MyHome extends StatefulWidget {
  @override
  State<StatefulWidget> createState() {
    // TODO: implement createState
    return MyHomePageState();
  }
}

class MyHomePageState extends State<MyHome> {
  Widget sdtSnack = SnackBar(content: Text(‘sdt‘));

  @override
  Widget build(BuildContext context) {
    return Scaffold(
      appBar: AppBar(
        title: Text(‘BottomNavigationBar Sample‘),
      ),
      body: Center(
        child: new ListView(
          children: <Widget>[

            new FlatButton(
              onPressed: (){
                Scaffold.of(context).showSnackBar(sdtSnack);
              },
              child: new Text(‘我是按钮‘),
            ),


            Builder(builder: (BuildContext context) {
              return new Center(
                child: new GestureDetector(
                  onTap: () {

                    final mySnackBar = SnackBar(
                      content: new Text(‘我是SnackBar‘),
                      duration: Duration(seconds: 4),
                      action: new SnackBarAction(
                          label: ‘我是scackbar按钮‘,
                          onPressed: () {
                            print(‘点击了snackbar按钮‘);
                          }),
                    );

                    Scaffold.of(context).showSnackBar(mySnackBar);
                  },
                  child: new Text(‘点我显示SnackBar‘),
                ),
              );
            }),



          ],
        ),
      ),
    );
  }
}

  

以上是关于SnackBar使用的主要内容,如果未能解决你的问题,请参考以下文章

Snackbar 在片段类中不起作用

来自另一个片段的 Snackbar 回调

Snackbar 操作文本颜色不变

autoHideDuration 在使用钩子的 Snackbar 中不起作用[关闭]

SnackBar使用

如何在 Flutter 中创建和使用 SnackBar 进行重用(全局)