remove test action button

This commit is contained in:
2024-07-05 18:22:45 +02:00
parent cfd9ef1bf9
commit cf43c0e305

View File

@@ -40,32 +40,6 @@ class _HomeState extends State<Home> {
return Scaffold(
appBar: const MyAppBar(barTitle: "Mzansi Innovation Hub"),
drawer: HomeAppDrawer(userEmail: useremail),
floatingActionButton: FloatingActionButton.extended(
label: const Text(
"Test Allert",
style: TextStyle(
fontWeight: FontWeight.bold,
color: Colors.white,
),
),
backgroundColor: Colors.blueAccent,
onPressed: () {
// Navigator.of(context)
// .pushNamed('/patient-manager/add', arguments: widget.userEmail);
showDialog(
context: context,
builder: (context) => const MySuccessMessage(
successType: "Success",
successMessage:
"This is the message when something successful happened.",
),
);
},
icon: const Icon(
Icons.warning_amber_rounded,
color: Colors.white,
),
),
body: HomeTileGrid(
userEmail: useremail,
),