responsive_layout_thrive 1.0.1+1 responsive_layout_thrive: ^1.0.1+1 copied to clipboard
A package to use responsive design in flutter.
Responsive #
Responsive is a easy way to implement responsive layout in to your application using flutter. #
How to use it? #
1. Add the package to your dependencies
flutter pub add responsive_layout_thrive
2. In your main.dart do this in the body of the Scaffold
Scaffold(body: Responsive(mobileBody: const MobileBody(), tabletBody: const TabletBody(), desktopBody: const DesktopBody()),