23 lines
604 B
Dart
23 lines
604 B
Dart
import 'package:flutter/material.dart';
|
|
import 'package:flutter_screenutil/flutter_screenutil.dart';
|
|
import 'package:fluttertoast/fluttertoast.dart';
|
|
|
|
Future<bool?> toastInfo({
|
|
required String msg,
|
|
Color backgroundColor = Colors.black,
|
|
Color textColor = Colors.white,
|
|
}) {
|
|
return Fluttertoast.showToast(
|
|
msg: msg,
|
|
toastLength: Toast.LENGTH_SHORT,
|
|
// 显示时间 安卓平台
|
|
gravity: ToastGravity.TOP,
|
|
// 在屏幕上的位置
|
|
timeInSecForIosWeb: 1,
|
|
// IOS平台显示时长
|
|
backgroundColor: backgroundColor,
|
|
textColor: textColor,
|
|
fontSize: 16.sp,
|
|
);
|
|
}
|