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 90 ResponsiveFramework issues
Sort by recently updated
recently updated
newest added

Hi, I tested the minimal example in iPhone 11, iPhone SE and iPad as shown below screen. In the update text becomes too small for reading. My first question is...

![Simulator Screen Shot - iPhone SE (2nd generation) - 2020-09-10 at 14 50 04](https://user-images.githubusercontent.com/47425480/92691701-8ec1a500-f375-11ea-95bf-c6fe9788b508.png) ![Screenshot_1599720607](https://user-images.githubusercontent.com/47425480/92691709-93865900-f375-11ea-97cc-f23b5636b797.png) Does anyone know how to make the horizontal space scale correctly? This is my main...

Hello, i'm using the default configurantions for this lib, but when i use CupertinoPageRoute and both screens have a CupertinoNavigationBar this happens: ![Bug](https://user-images.githubusercontent.com/49821124/87547418-738e2e00-c681-11ea-9dc7-8bca64847d4b.gif)

If I use **ResponsiveWrapper.builder** it brakes my **DropdownButton**. ``runApp(MaterialApp( debugShowCheckedModeBanner: false, builder: (context, widget) => ResponsiveWrapper.builder(TabsPage(), maxWidth: 1200, minWidth: 450, defaultScale: true, breakpoints: [ ResponsiveBreakpoint(breakpoint: 450, name: MOBILE), ResponsiveBreakpoint( breakpoint:...

Lots of big things planned for Responsive Framework. [Release Tracker](https://github.com/Codelessly/ResponsiveFramework/projects) v0.1.0 - refactor logic to maintainable mutators and write tests. Finalize API. v0.2.0 - create max autoscale mutator. Create API...

Got error when use with responsive framework. Fixed by checking mounted property. ![image](https://user-images.githubusercontent.com/24736211/190916466-2202d5be-0a10-4b19-9efc-9ac23dfeee2e.png)

I noticed that the breakpoint value will be null on initial build and a subsequent build update would have the breakpoint value. This would cause a sudden change on the...

... pub.dev\responsive_framework-1.1.1\lib\responsive_value.dart => **Throws error when screen exceeds size 600** - my code ``` @override Widget build(BuildContext context) { return AppBar( title: const Text('HomeView'), centerTitle: true, leading: ResponsiveVisibility( visible: false,...

when i use ResponsiveWrapper it gives an error that it is an undefined class, i have tried it with .builder but still not working, but when i use ResponsiveBreakpoints then...