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

31 lines
642 B
Dart
Raw Normal View History

2025-05-21 09:04:21 +03:30
import 'package:flutter/material.dart';
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: [
2025-05-25 16:54:43 +03:30
MapWidget(
markerWidget: Icon(Icons.pin_drop_rounded),
initOnTap: () {
},
initMarkerWidget: Assets.vec.mapMarkerSvg.svg(
width: 30,
height: 30,
),
),
2025-05-21 14:43:26 +03:30
],
),
);
2025-05-21 09:04:21 +03:30
}
2025-05-25 16:54:43 +03:30
}