feat :
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:
@@ -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();
|
||||
}
|
||||
}
|
||||
@@ -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,
|
||||
);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user