feat: sale out of the province

This commit is contained in:
2025-06-17 11:46:09 +03:30
parent 4c40bfa43e
commit f5088027ba
5 changed files with 286 additions and 101 deletions

View File

@@ -0,0 +1,24 @@
import 'package:flutter/material.dart';
import 'package:get/get.dart';
GetPageRoute<dynamic> buildRouteFromGetPage(GetPage page) {
return GetPageRoute(
page: page.page,
settings: RouteSettings(name: page.name),
transition: page.transition,
curve: page.curve,
binding: page.binding,
bindings: page.bindings,
routeName: page.name,
title: page.title,
gestureWidth: page.gestureWidth,
alignment: page.alignment,
maintainState: page.maintainState,
customTransition: page.customTransition,
transitionDuration: page.transitionDuration ?? const Duration(milliseconds: 300),
fullscreenDialog: page.fullscreenDialog,
opaque: page.opaque,
popGesture: page.popGesture,
showCupertinoParallax: page.showCupertinoParallax,
);
}