You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
520 B
17 lines
520 B
4 years ago
|
import 'package:oktoast/oktoast.dart';
|
||
|
import 'package:flutter/material.dart';
|
||
|
import 'package:flutter_screenutil/flutter_screenutil.dart';
|
||
|
|
||
|
class Toast {
|
||
|
static Future<ToastFuture> globalToast(String text) {
|
||
|
showToast(
|
||
|
text,
|
||
|
duration: Duration(milliseconds: 2000),
|
||
|
// position: ToastPosition.top,
|
||
|
radius: 3.0,
|
||
|
backgroundColor: Color(0xff000000).withOpacity(0.85),
|
||
|
animationBuilder: Miui10AnimBuilder(),
|
||
|
textStyle: TextStyle(fontSize: ScreenUtil().setSp(34)),
|
||
|
);
|
||
|
}
|
||
|
}
|