Add folders and files for field trip and tracking functions

This commit is contained in:
2025-10-05 14:34:46 +02:00
parent cb94aa042a
commit e986cccdd6
6 changed files with 49 additions and 0 deletions
@@ -0,0 +1,13 @@
import 'package:get/get.dart';
import 'package:flutter/material.dart';
import '../controllers/tracking_controller.dart';
class TrackingView extends GetView<TrackingController> {
const TrackingView({Key? key}) : super(key: key);
@override
Widget build(BuildContext context) {
return Container();
}
}