const constructure

This commit is contained in:
Efril
2026-03-01 20:02:12 +07:00
parent 5058f99fe0
commit e625bd3d2a
142 changed files with 817 additions and 760 deletions
@@ -31,7 +31,7 @@ class TableCreateDialog extends StatelessWidget {
);
},
),
SpaceHeight(16),
const SpaceHeight(16),
AppTextFormField(
label: 'Kapasitas',
keyboardType: TextInputType.number,
@@ -41,7 +41,7 @@ class TableCreateDialog extends StatelessWidget {
);
},
),
SpaceHeight(24),
const SpaceHeight(24),
AppElevatedButton.filled(
onPressed: () {
context.read<TableFormBloc>().add(
@@ -29,7 +29,7 @@ class _TableTransferDialogState extends State<TableTransferDialog> {
void initState() {
super.initState();
context.read<TableLoaderBloc>().add(
TableLoaderEvent.fetched(isRefresh: true, status: 'available'),
const TableLoaderEvent.fetched(isRefresh: true, status: 'available'),
);
}
@@ -60,7 +60,7 @@ class _TableTransferDialogState extends State<TableTransferDialog> {
final availableTables = state.tables;
if (state.isFetching) {
return Center(child: const LoaderWithText());
return const Center(child: LoaderWithText());
}
if (selectTable == null && availableTables.isNotEmpty) {
@@ -252,7 +252,7 @@ class _TableTransferDialogState extends State<TableTransferDialog> {
),
],
),
SpaceHeight(24),
const SpaceHeight(24),
BlocBuilder<TableFormBloc, TableFormState>(
builder: (context, state) {
return AppElevatedButton.filled(