Add pop up dialog to display selected note
This commit is contained in:
parent
16fcd2783f
commit
34e8e7ad45
2 changed files with 29 additions and 1 deletions
|
|
@ -50,6 +50,18 @@ class _PatientManagerState extends State<PatientManager> {
|
|||
return Scaffold(
|
||||
appBar: const MyAppBar(barTitle: "Patient Manager"),
|
||||
drawer: MyAppDrawer(drawerTitle: widget.userEmail),
|
||||
//floatingActionButtonLocation: FloatingActionButtonLocation.endTop,
|
||||
floatingActionButton: FloatingActionButton.extended(
|
||||
label: const Text(
|
||||
"Create",
|
||||
style: TextStyle(
|
||||
fontWeight: FontWeight.bold,
|
||||
),
|
||||
),
|
||||
backgroundColor: Colors.blueAccent,
|
||||
onPressed: () {},
|
||||
icon: const Icon(Icons.add),
|
||||
),
|
||||
body: FutureBuilder(
|
||||
future: futurePatients,
|
||||
builder: (context, snapshot) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue