responsive_x

Creator: coderz1093

Last updated:

0 purchases

responsive_x Image
responsive_x Images
Add to Cart

Description:

responsive x

ResponsiveX #
A simple Flutter package to handle responsiveness.

Overview #
The package consists of the followings:

SizeConfig - is the simple class that makes calculation for responsiveness.
Extensions - are functions to calculation dynamic height, width and font size.


Example #
First of all, you should initialize SizeConfig class using it's init method and giving the your design sizes (Height and Width given by your designer as screen size):
class MyApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
return LayoutBuilder(
builder: (context, constraints) {
return OrientationBuilder(
builder: (context, orientation) {
SizeConfig(
designScreenWidth: 360,
designScreenHeight: 640,
).init(constraints, orientation);

return MaterialApp(
title: 'Flutter Demo',
theme: ThemeData(
primarySwatch: Colors.blue,
visualDensity: VisualDensity.adaptivePlatformDensity,
),
home: MyHomePage(title: 'Flutter Demo Home Page'),
);
},
);
},
);
}
}
copied to clipboard
Then you can use extension methods to calculate height, width and font size dynamically:
Container(
height: 100.height,
width: 100.width,
color: Colors.pink,
),
copied to clipboard
You can calculate font size as following:
Container(
height: 100.height,
width: 100.width,
color: Colors.pink,
child: Center(
child: Text(
'ResponsiveX',
style: TextStyle(
fontSize: 14.fontSize,
color: Colors.white,
),
),
),
),
copied to clipboard

Dart Versions #

Dart 2: >= 2.7.0

Maintainers #

Kanan Yusubov

License

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Files In This Product:

Customer Reviews

There are no reviews.

Related Products

More From This Creator