final
This commit is contained in:
@@ -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),
|
||||
),
|
||||
);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user