ente/lib/utils/toast_util.dart
2020-08-09 20:00:42 +05:30

14 lines
398 B
Dart

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