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

Discuss the Responsive Framework here ⬇️ Feel free to leave your thought on the features, API, and functionality. Or use this to start a discussion and share what's on your...

``` builder : (context, widget) => ResponsiveWrapper.builder( // ? warp all the heights and widths according to screen automatically widget, defaultScale: true, breakpoints: [ ResponsiveBreakpoint.autoScale(420, name: MOBILE), // breakpoint is...

I have noticed that the Responsive Framework is shrinking the Cupertino Alert Dialog more than usual, making the UI feel off from iOS standards. Is there any workaround?

On the following simple section widget, I can't get the text to be responsive. It neither resize nor rescale. I am using **responsive_framework: ^0.1.4** on **Flutter 2.2.3** ```flutter import 'package:flutter/material.dart';...

Hi codelesssly, I just stumbled upon your package and I am wondering what's the difference between this package and https://pub.dev/packages/flutter_screenutil Are there any fundamental differences in the way these 2...

Hello, Alignment parameter doesn't seem to have any effect for me. This is a sample to reproduce the problem: ``` dart class SampleNotWorking extends StatelessWidget { @override Widget build(BuildContext context)...

I do not have access to the child parameter from the builder because it comes from the `onGenerateRoute: onGenerateRoute` I found this `BouncingScrollWrapper.builder(context, widget)`! It works for mobiles, tablets and...

I have tried the framework and works fine in portrait mode but when I make it landscape mode problem occurs, In my 5.9" phone screen when I try to show...

TODO: Investigate whether a hard assertion and error is necessary for when padding exceeds grid view width. Perhaps a safer way is to log a warning and not throw an...

`MaterialApp( builder: (context, widget) => ResponsiveWrapper.builder( widget, maxWidth: 1200, minWidth: 450, defaultScale: true, breakpoints: [ ResponsiveBreakpoint(breakpoint: 450, name: MOBILE), ResponsiveBreakpoint(breakpoint: 800, name: TABLET), ResponsiveBreakpoint(breakpoint: 1000, name: TABLET), ResponsiveBreakpoint(breakpoint: 1200, name:...