Files
rasadyar_application/packages/livestock/lib/presentation/page/map/view.dart

22 lines
451 B
Dart
Raw Normal View History

2025-05-21 09:04:21 +03:30
import 'package:flutter/material.dart';
2025-05-21 14:43:26 +03:30
import 'package:flutter/material.dart' as mt;
2025-05-21 09:04:21 +03:30
import 'package:rasadyar_core/core.dart';
2025-05-21 14:43:26 +03:30
import 'package:rasadyar_core/presentation/widget/map/view.dart';
2025-05-21 09:04:21 +03:30
import 'logic.dart';
class MapPage extends GetView<MapLogic> {
MapPage({super.key});
@override
Widget build(BuildContext context) {
2025-05-21 14:43:26 +03:30
return Scaffold(
body: Stack(
children: [
MapWidget(),
],
),
);
2025-05-21 09:04:21 +03:30
}
2025-05-21 14:43:26 +03:30
}