ente/lib/utils/toast_util.dart
2020-10-26 16:48:00 +05:30

14 lines
413 B
Dart

import 'package:flutter/material.dart';
import 'package:fluttertoast/fluttertoast.dart';
Future<void> showToast(String message, {toastLength: Toast.LENGTH_SHORT}) {
return Fluttertoast.showToast(
msg: message,
toastLength: toastLength,
gravity: ToastGravity.BOTTOM,
timeInSecForIosWeb: 1,
backgroundColor: Colors.grey[800],
textColor: Colors.white,
fontSize: 16.0);
}