Add locations and save them, remove locations and delete them

This commit is contained in:
Konstantin Kollar
2022-09-05 11:59:52 +02:00
parent 730634bdb2
commit e96a33f0a3
6 changed files with 75 additions and 48 deletions
+4 -2
View File
@@ -28,8 +28,10 @@ class NavBar extends StatelessWidget {
leading: const Icon(Icons.public),
title: const Text("Locations"),
onTap: (() {
Navigator.push(context,
MaterialPageRoute(builder: (context) => const Locations()));
Navigator.push(
context,
MaterialPageRoute(builder: (context) => const Locations()),
);
}),
)
],