flutter-samples/lib/utils/index.dart
2025-05-03 15:33:44 +08:00

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,
);
}