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()),