responsive_builder icon indicating copy to clipboard operation
responsive_builder copied to clipboard

A set of widgets to make responsive UI building in flutter more readable

Results 23 responsive_builder issues
Sort by recently updated
recently updated
newest added

Hello I could see the use of var orientation = MediaQuery.of(context).orientation; on OrientationLayoutBuilder on my use case I could not see the widget build on orientation changes on IPAD simulator....

enhancement

`ScreenBreakpoints` class has these parameters `desktop`, `tablet`, and `watch` only, meanwhile with methods like `getValueForScreenType` you can work with these parameters `desktop`, `mobile`, `tablet`, and `watch`, so what happened with...

question

Current case: ``` getValueForScreenType(context: context, desktop: myWidget, mobile: anotherWidget, tablet: anotherWidget, watch: anotherWidget); ``` It could be improved with a parameter assigning a default value for other screen types being...

question

Hello!, I would like to request you to support the ```num``` type . (Don't stick to the double.) Model code ```dart class _ScreenBreakPoints { num desktop = 1024; num tablet...

enhancement

Hi, I have some forms that works fine on tablets or mobile but on desktop or on browser I want to provide the same form inside a dialog. How can...

question

Getting this error when switching between mobile and desktop. Also using the Stacked viewmodel package. Seems like when I change the layout something else is being removed.

question

The StartupView of my app checks whether the user is logged in and navigates to "Home" or "LoginView". When using responsive_builder, the widgets are not rebuilt when the user refreshes...

question

why there is no orientation info in these packages?

Fixes #31 Fixes the issues on all Desktop platforms when the window is wider than the height and mean it used the tablet sizes. This change ensures that width=Size.width rather...

Currently we have only Desktop, Tablet, Mobile and Watch. As we know there are many different sizes in even the mobile devices. I suggest we add a Large, Medium and...

enhancement
p1