first commit

This commit is contained in:
Anbarasu
2026-05-26 18:01:57 +05:30
commit 6d59c8daf6
297 changed files with 35238 additions and 0 deletions

16
lib/helper/toaster.dart Normal file
View File

@@ -0,0 +1,16 @@
import 'package:fluttertoast/fluttertoast.dart';
import '../constants/color_constants.dart';
class Toast{
static void showToast(String message){
Fluttertoast.showToast(
msg: message,
textColor: ColorConstants.secondaryColor,
timeInSecForIosWeb: 1,
webShowClose: true,
backgroundColor: ColorConstants.grey,
gravity: ToastGravity.TOP_RIGHT,
fontSize: 15.0,
);
}
}