feat : sale out of province

This commit is contained in:
2025-07-07 16:46:32 +03:30
parent 93ec5774c8
commit 84e3f16f1d
7 changed files with 165 additions and 349 deletions

View File

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

View File

@@ -0,0 +1,15 @@
import 'package:flutter/material.dart';
import 'package:get/get.dart';
import 'logic.dart';
class SalesOutOfProvinceSalesListPage extends StatelessWidget {
const SalesOutOfProvinceSalesListPage({Key? key}) : super(key: key);
@override
Widget build(BuildContext context) {
final SalesOutOfProvinceSalesListLogic logic = Get.put(SalesOutOfProvinceSalesListLogic());
return Container();
}
}