import 'package:flutter/material.dart';
import 'package:fluttertoast/fluttertoast.dart';
/// @class : ToastUtils
/// @name : jhf
/// @description :显示toast
class ToastUtils {
/// 显示toast
///[name] lottie名称
static show(String name) {
Fluttertoast.showToast(
msg: name,
toastLength: Toast.LENGTH_SHORT,
gravity: ToastGravity.BOTTOM,
timeInSecForIosWeb: 1,
backgroundColor: Colors.black,
textColor: Colors.white,
fontSize: 15.0);
}
/// 显示toast
///[name] lottie名称
static showCenter(String name) {
Fluttertoast.showToast(
msg: name,
toastLength: Toast.LENGTH_SHORT,
gravity: ToastGravity.CENTER,
timeInSecForIosWeb: 1,
backgroundColor: Colors.black,
textColor: Colors.white,
fontSize: 16.0);
}
}
-
由 张国庆 提交于37b807e1