update
This commit is contained in:
18
lib/widgets/bottom_sheet_controller.dart
Normal file
18
lib/widgets/bottom_sheet_controller.dart
Normal file
@ -0,0 +1,18 @@
|
||||
|
||||
|
||||
import 'package:geojson/geojson.dart';
|
||||
import 'package:get/get_state_manager/get_state_manager.dart';
|
||||
|
||||
class BottomSheetController extends GetxController{
|
||||
|
||||
List<GeoJsonFeature>? currentFeature = <GeoJsonFeature>[];
|
||||
|
||||
BottomSheetController({this.currentFeature});
|
||||
|
||||
@override
|
||||
void onInit() {
|
||||
super.onInit();
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user