Flutter web App home page, App Bar, Tile Grid & Tiles added
This commit is contained in:
parent
2242faef8a
commit
e877072c7d
46 changed files with 166 additions and 23 deletions
17
Frontend/patient_manager/lib/components/myAppDrawer.dart
Normal file
17
Frontend/patient_manager/lib/components/myAppDrawer.dart
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
import 'package:flutter/material.dart';
|
||||
|
||||
class MyAppDrawer extends StatefulWidget {
|
||||
final String drawerTitle;
|
||||
|
||||
const MyAppDrawer({super.key, required this.drawerTitle});
|
||||
|
||||
@override
|
||||
State<MyAppDrawer> createState() => _MyAppDrawerState();
|
||||
}
|
||||
|
||||
class _MyAppDrawerState extends State<MyAppDrawer> {
|
||||
@override
|
||||
Widget build(BuildContext context) {
|
||||
return Drawer();
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue