ente/lib/utils/toast_util.dart

14 lines
398 B
Dart
Raw Normal View History

2020-07-07 21:46:14 +00:00
import 'package:flutter/material.dart';
import 'package:fluttertoast/fluttertoast.dart';
2020-07-07 21:53:09 +00:00
void showToast(String message, {toastLength: Toast.LENGTH_SHORT}) {
2020-07-07 21:46:14 +00:00
Fluttertoast.showToast(
msg: message,
2020-07-07 21:53:09 +00:00
toastLength: toastLength,
2020-07-07 21:46:14 +00:00
gravity: ToastGravity.BOTTOM,
timeInSecForIosWeb: 1,
backgroundColor: Colors.grey[600],
textColor: Colors.white,
fontSize: 16.0);
}