美文网首页
flutter弹窗插件 -- oktoast

flutter弹窗插件 -- oktoast

作者: 不不不紧张 | 来源:发表于2022-08-03 15:18 被阅读0次

    flutter 开发中常用的弹窗插件oktoast,使用非常简单
    插件地址:oktoast | Flutter Package (pub.dev)

    使用方法

    在APP入口需要套一个OKToast组件:

    OKToast(
      /// set toast style, optional
      child:MaterialApp()
    );
    
    • 弹出弹窗
    showToast("hello");
    
    • 自定义弹窗
    // 调用弹窗
    showToastWidget(CustomToast());
    
    // 自定义弹窗widget
    class CustomToast extends StatelessWidget{
      @override
      Widget build(BuildContext context) {
        return Container(
          width: 200,
          height: 200,
          color: Colors.red,
          child: Image.asset("images/toast.png"),
        );
      }
    }
    

    相关文章

      网友评论

          本文标题:flutter弹窗插件 -- oktoast

          本文链接:https://www.haomeiwen.com/subject/uzrjwrtx.html