17 lines
474 B
Dart
17 lines
474 B
Dart
import 'package:flutter/material.dart';
|
|
import 'package:fluttertoast/fluttertoast.dart';
|
|
import 'package:taafee_mobile/common/const/const.dart';
|
|
|
|
class Toast {
|
|
static void showToast(String msg) {
|
|
Fluttertoast.showToast(
|
|
msg: msg,
|
|
gravity: ToastGravity.BOTTOM,
|
|
timeInSecForIosWeb: 1,
|
|
// backgroundColor: Colors.black,
|
|
textColor: AppColors.textMessageColor,
|
|
backgroundColor: Colors.white,
|
|
fontSize: 16.0);
|
|
}
|
|
}
|