Start to implement functions: adding point, polyline and polygon to map
This commit is contained in:
@@ -55,6 +55,22 @@ class HomeView extends GetView<HomeViewController> {
|
||||
// child: const Text('RTCM teszt'))
|
||||
],
|
||||
),
|
||||
Padding(
|
||||
padding: const EdgeInsets.symmetric(vertical: 10.0),
|
||||
child: Row(
|
||||
mainAxisAlignment: MainAxisAlignment.spaceEvenly,
|
||||
children: [
|
||||
TextButton(
|
||||
onPressed: () async {
|
||||
Get.toNamed("/field_trip");
|
||||
},
|
||||
child: Text('Field trip')),
|
||||
TextButton(
|
||||
onPressed: () async {
|
||||
Get.toNamed("/tracking");
|
||||
},
|
||||
child: Text('Tracking'))
|
||||
])),
|
||||
Padding(
|
||||
padding: const EdgeInsets.only(top: 10.0),
|
||||
child: Row(
|
||||
|
||||
Reference in New Issue
Block a user