ente/lib/utils/toast_util.dart

14 lines
412 B
Dart
Raw Normal View History

2020-07-07 21:46:14 +00:00
import 'package:flutter/material.dart';
import 'package:fluttertoast/fluttertoast.dart';
Future<void> showToast(String message, {toastLength: Toast.LENGTH_LONG}) {
2020-10-26 11:18:00 +00:00
return Fluttertoast.showToast(
2020-07-07 21:46:14 +00:00
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,
2020-10-26 11:18:00 +00:00
backgroundColor: Colors.grey[800],
2020-07-07 21:46:14 +00:00
textColor: Colors.white,
fontSize: 16.0);
}