This commit is contained in:
2026-07-12 04:33:48 +08:00
parent f8a90ad305
commit e7ce0f7bae
151 changed files with 2765 additions and 2947 deletions

View File

@@ -12,7 +12,7 @@ import '../widgets/mobile/mobile_renew_license.dart';
class RenewLicense extends StatefulWidget {
const RenewLicense({Key key}) :
const RenewLicense({Key? key}) :
super(key: key);
@override
@@ -28,10 +28,10 @@ class RenewLicenseState extends State<RenewLicense> {
return ResponsiveBuilder(
builder: (context, sizingInformation) =>
ScreenTypeLayout(
mobile: MobileRenewLicense(Constants.BUSINESS_ID),
tablet: DesktopRenewLicense(Constants.BUSINESS_ID),
desktop: DesktopRenewLicense(Constants.BUSINESS_ID),
ScreenTypeLayout.builder(
mobile: (context) => MobileRenewLicense(Constants.BUSINESS_ID),
tablet: (context) => DesktopRenewLicense(Constants.BUSINESS_ID),
desktop: (context) => DesktopRenewLicense(Constants.BUSINESS_ID),
),
);
}