first commit

This commit is contained in:
2026-02-07 15:57:09 +07:00
commit 157096f164
1153 changed files with 415766 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
import 'package:flutter_riverpod/flutter_riverpod.dart';
import '../warehouse_model/warehouse_list_model.dart';
import '../warehouse_repo/warehouse_repo.dart';
WarehouseRepo repo = WarehouseRepo();
// fetch warehouse list
final fetchWarehouseListProvider = FutureProvider<WarehouseListModel>((ref) {
return repo.fetchWareHouseList();
});