Corrected variables declaration

This commit is contained in:
Patrick Alvin Alcala 2025-09-22 13:17:38 +08:00
parent cf813e22c1
commit 69b28b1e59
11 changed files with 44 additions and 41 deletions

View file

@ -29,12 +29,13 @@ class _DeleteStockPageState extends State<DeleteStockPage> {
final _stocks = Stocks();
final _quantityController = TextEditingController();
late List _stockList = [];
late String _selectedStock = '';
late bool _aboveQuantity = false;
late bool _noStock = false;
late double _serverQuantity = 0;
late String _selectedUUID = '';
bool _aboveQuantity = false;
bool _noStock = false;
double _serverQuantity = 0;
late List _stockList;
late String _selectedStock;
late String _selectedUUID;
void _getStocks() async {
_stockList = await _stocks.getList();