Last updated:
0 purchases
fl responsive ui
fl_responsive_ui #
add this code in main.dart Widget to update UI when screen size change.
final screeSize = MediaQuery.of(context).size;
FlResponsiveUI().updateScreenDimension(
width: screeSize.width, height: screeSize.height);
copied to clipboard
for responsive width
// 170.0 is your desire width value
FlResponsiveUI().getProportionalWidth(width: 170.0)
copied to clipboard
for responsive height
// 70.0 is your desire height value
FlResponsiveUI().getProportionalHeight(height: 70.0)
copied to clipboard
for Regular TextStyle for responsive text
// can set fontSize, color, isChangeAccordingToDeviceSize,
// characterSpacing and lineSpacing
FlResponsiveUI().getTextStyleRegular(
fontSize: 18
)
copied to clipboard
for orientation
// to check device orientation
// this is optional
// You can get orientation by MedaiQuery in flutter
FlResponsiveUI().getDeviceOrientation(context)
copied to clipboard
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.