ResponsiveFramework icon indicating copy to clipboard operation
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/

Results 92 ResponsiveFramework issues
Sort by recently updated
recently updated
newest added

Row 671 @`responsive_wrapper.dart` ```dart // Platform initialization requires context. setPlatform(); ``` Just a small suggestion: ->> `setPlatform();` could be moved to `initState`, because the context is retrievable there and it...

I want to be able to pass in maxItems in column then auto break to new row after the maxItems number is reached ```dart ResponsiveRowColumn( rowMainAxisAlignment: MainAxisAlignment.center, rowPadding: const EdgeInsets.all(30),...

I am using this package to handle ui scaling in windows. Because otherwise flutters rescaling breaks my layout. However when I now write my integration tests the size which is...

I have the same issue. ```dart class MapsBaseWidget extends StatefulWidget { const MapsBaseWidget({ Key? key, }) : super(key: key); @override State createState() => _MapsBaseWidgetState(); } class _MapsBaseWidgetState extends State {...

Hello, I found a problem, changing the dpi page of the phone may not display properly, below I will provide screenshots with a resolution of 2356*1080 dpi 360 and dpi...

Hey there! I've had a look at your minimal website demo @ https://gallery.codelessly.com/flutterwebsites/minimal/?utm_medium=link&utm_campaign=demo It looks very nice, though I think it's unintuitive that on wide screens where the content doesn't...

I have a web app, I have a page that I don't want it to apply the responsive wrapper frame (the red part in the pic). Why would I want...

If you add the ResponsiveVisibility to an AppBar's 'leading' when you hide it, it takes up space with the "SizedBox.shrink". Since it won't be removed unless null. ``` leading: ResponsiveVisibility(...

As noted in #33 there are a few things that would be great to be considered for a version 0.3.0. This issue should function to spark a discussion between @searchy2...