second commit

This commit is contained in:
Anbarasu
2026-05-27 10:35:09 +05:30
parent c53794c04c
commit 1435ac47b0
501 changed files with 52818 additions and 0 deletions

19
lib/Helper/toast.dart Normal file
View File

@@ -0,0 +1,19 @@
import 'package:flutter/material.dart';
import 'package:fluttertoast/fluttertoast.dart';
import 'Constants/Colorconstants.dart';
class Toast{
static void showToast(String message){
Fluttertoast.showToast(
msg: message,
textColor: ColorConstants.secondaryColor,
timeInSecForIosWeb: 1,
webShowClose: true,
backgroundColor: Colors.grey[500],
gravity: ToastGravity.TOP_RIGHT,
fontSize: 15.0
);
}
}