flutter中Fluttertoast.showToast()会显示logo,怎么去掉logo
时间: 2024-03-27 07:36:02 浏览: 88
去logo软件
4星 · 用户满意度95%
可以通过设置`toastBuilder`来自定义toast视图,从而去掉logo的显示。具体实现方式如下:
```dart
Fluttertoast.showToast(
msg: "Toast message",
toastBuilder: (BuildContext context, Widget child) {
return Padding(
padding: const EdgeInsets.symmetric(horizontal: 24.0, vertical: 12.0),
child: Material(
borderRadius: BorderRadius.circular(25.0),
color: Colors.black87,
child: Padding(
padding: const EdgeInsets.all(16.0),
child: Text(
"Toast message",
style: TextStyle(
fontSize: 16.0,
color: Colors.white,
),
),
),
),
);
},
);
```
在上述代码中,我们通过自定义`toastBuilder`来创建一个只包含文本的视图,并将其作为toast视图。这样,就可以去掉默认视图中的logo。
阅读全文