公告板
版本库
filestore
活动
搜索
登录
main
/
locations
概况
操作记录
提交次数
目录
文档
派生
对比
blame
|
历史
|
原始文档
功能完善
admin
2021-11-25
70a344485bd0c9b68ac91f72ed23ec5bfa998b09
[locations.git]
/
lib
/
utils
/
ui_utils.dart
1
2
3
4
5
6
7
import 'package:fluttertoast/fluttertoast.dart';
class ToastUtil {
static toast(String text) {
Fluttertoast.showToast(msg: text);
}
}