Ray Li
Ray Li
Unfortunately, I've been very sick for the past year with Long Covid. I'm also trying my best to launch Codelessly. Especially the past few months now that I've felt better....
Thank you for your patience. Migration guide is up! https://github.com/Codelessly/ResponsiveFramework/blob/master/migration_0.2.0_to_1.0.0.md
Ah, I see the migration ReadMe doesn't include the `how` on moving from ResponsiveWrapper to ResponsiveScaledBox. Here's the example code for using ResponsiveScaledBox from the example app. ```dart ResponsiveScaledBox( //...
Thank you for reporting. The issue was a Dart language limitation that did not support generic type nullability. With the latest Flutter v3.19, nullable generic types now flow through correctly...
Thank you for reopening. I definitely want to make sure this library works with DevicePreview as I use that library quite extensively. In fact, DevicePreview helps me test to make...
Thank you for reporting with the info. This could be the null size on initial frame issue. MediaQuery return null on the initial frame which makes layouts that rely on...
Thank you for reporting the issue and providing the sample code. Good issue!
Your responsive value doesn't cover all screen widths. So if the device is between 450 and 800, it returns a null value. Either provide a default value ResponsiveValue(defaultValue: 450), or...
You're right, the initial frame 0 width and height issue is still present in the Flutter framework. Let me read through the issues and see how people want to solve...
Thank you for bringing this side effect of the API change to my attention. It was definitely not my intention to change the ResponsiveVisibility API in this way. This new...