ResponsiveFramework
ResponsiveFramework copied to clipboard
Easily make Flutter apps responsive. Automatically adapt UI to different screen sizes. Responsiveness made simple. Demo: https://gallery.codelessly.com/flutterwebsites/minimal/
I used this code: ```dart return ResponsiveWrapper.builder( ClampingScrollWrapper.builder(context, Mechanism(child!)), landscapePlatforms: [ResponsiveTargetPlatform.android, ResponsiveTargetPlatform.iOS], minWidth: 340, defaultScaleFactor: 1.0, defaultScale: true, breakpoints: const [ ResponsiveBreakpoint.resize(340, scaleFactor: 1), ResponsiveBreakpoint.autoScale(390, scaleFactor: 1.14), ResponsiveBreakpoint.autoScale(550, scaleFactor: 1.2),...
Not Detect Devide ZFold in and ZFold out
Whenever I enable/disable "Inspect Widget" the entire app state is reset. Here is how I use ResponsiveWrapper (see below). I appreciate any help :) ```dart class MainApp extends StatelessWidget {...
When a resize breakpoint is reached, the size of the widgets snaps back to the default size. This means if the breakpoint were at 800, the widget would be smaller...
Love the idea of this package! Coming from a Bootstrap environment on web to mobile, this concept is very appealing. I'm using the Provider and GetIt packages and am having...
Hello there, currently I use the plugin for my desktop app. It works very good, thanks for your efforts! However, when it came down to a "target" aspect-ratio, I could...
## Step to reproduce: - add global key in widget (in this case I use icon bell) - call this in some function to get offset of the widget ```dart...
hi, thanks for great package I am using ReorderableWrap of 'reorderables' package. I found feedback's location is wrong when using responsive_framework package. More generally, there are same problem when using...
Device: iPhone 7 Plus Flutter: 2.10.5 ```dart builder: (context, myWidget) { myWidget = DevicePreview.appBuilder(context, myWidget); myWidget = ResponsiveWrapper.builder( BouncingScrollWrapper.builder(context, myWidget), maxWidth: 1200, minWidth: 450, defaultScale: true, breakpoints: [ const ResponsiveBreakpoint.resize(450,...