17 lines
431 B
Dart
17 lines
431 B
Dart
import 'package:flutter/material.dart';
|
|
import 'package:fluttertoast/fluttertoast.dart';
|
|
|
|
void showNoneMsg(String msg) {
|
|
Fluttertoast.showToast(
|
|
msg: msg,
|
|
toastLength: Toast.LENGTH_SHORT,
|
|
gravity: ToastGravity.CENTER,
|
|
timeInSecForIosWeb: 1,
|
|
backgroundColor: Colors.black.withAlpha(200),
|
|
textColor: Colors.white,
|
|
webPosition: 'center',
|
|
webBgColor: 'rgba(0, 0, 0, 0.75)',
|
|
fontSize: 16.0,
|
|
);
|
|
}
|