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
+3 -3
View File
@@ -28,7 +28,7 @@ class VoidPage extends StatelessWidget implements AutoRouteWrapper {
(f) => AppFlushbar.showOrderFailureToast(context, f),
(success) {
if (context.mounted) {
context.router.replace(VoidSuccessRoute());
context.router.replace(const VoidSuccessRoute());
}
},
),
@@ -40,12 +40,12 @@ class VoidPage extends StatelessWidget implements AutoRouteWrapper {
child: BlocBuilder<VoidFormBloc, VoidFormState>(
builder: (context, state) {
return Container(
padding: EdgeInsets.all(24),
padding: const EdgeInsets.all(24),
child: Row(
children: [
// Left Panel - Order Details & Items
Expanded(flex: 3, child: VoidLeftPanel(state: state)),
SpaceWidth(24),
const SpaceWidth(24),
// Right Panel - Void Configuration
Expanded(flex: 2, child: VoidRightPanel(state: state)),
],