13 lines
398 B
Dart
13 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);
|
|
}
|