1 - empty_widget
2- loading_widget
3 - use this widget in list_view widget
4 - fix some bug in list_view_widget
5 - add some feature in list_view_widget
This commit is contained in:
2025-06-30 16:16:54 +03:30
parent 79adab71e3
commit d76a2ab579
7 changed files with 145 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
import 'package:get/get.dart';
class BuyInProvinceLogic extends GetxController {
@override
void onReady() {
// TODO: implement onReady
super.onReady();
}
@override
void onClose() {
// TODO: implement onClose
super.onClose();
}
}

View File

@@ -0,0 +1,16 @@
import 'package:flutter/material.dart';
import 'package:get/get.dart';
import 'logic.dart';
class BuyInProvincePage extends GetView<BuyInProvinceLogic> {
const BuyInProvincePage({super.key});
@override
Widget build(BuildContext context) {
return Container(
color: Colors.amberAccent,
);
}
}