Provides adaptive layout sizes for creating responsive design
Add package dependency in your project:
dependencies:
adaptive_layout:
git:
url: https://github.com/pintusingh28/flutter-packages
path: adaptive_layout
Wrap your app with AdaptiveLayout
widget.
runApp(
AdaptiveLayout.fromView(
child: MyApp(),
),
);
// retrieve layout data
final layoutData = AdaptiveLayout.of(context);
// retrieve layout type
final layoutType = AdaptiveLayout.layoutTypeOf(context);