feat : location details

This commit is contained in:
2025-04-15 17:27:48 +03:30
parent a754ac6873
commit 63395c557b
13 changed files with 614 additions and 5 deletions

View File

@@ -0,0 +1,34 @@
import 'package:flutter/cupertino.dart';
import 'package:rasadyar_core/core.dart';
class LocationDetailsLogic extends GetxController {
RxInt selectedSegment = 0.obs;
// The data for the segments
final Map<int, Widget> segments = {
0: Container(
padding: EdgeInsets.all(10),
decoration: BoxDecoration(borderRadius: BorderRadius.circular(50)),
child: Text('همه', style: AppFonts.yekan13),
),
1: Container(
padding: EdgeInsets.all(10),
decoration: BoxDecoration(borderRadius: BorderRadius.circular(50)),
child: Text('بر اساس تاریخ', style: AppFonts.yekan13),
),
};
RxBool seletected = false.obs;
@override
void onReady() {
// TODO: implement onReady
super.onReady();
}
@override
void onClose() {
// TODO: implement onClose
super.onClose();
}
}