delfme
delfme
Quick report on this. Download Inter font from here https://rsms.me/inter/ Add it to pubspec: ``` - family: InterVariable fonts: - asset: assets/fonts/InterVariable.ttf - asset: assets/fonts/InterVariable-Italic.ttf ``` In my case, I...
Unfortunately, the workaround above isn’t a solution, as some emojis will be rendered without color on both Android and iOS. This issue may be related to [this GitHub issue](https://github.com/flutter/flutter/issues/100964#issuecomment-1190778513). To...
> Maybe helpful additional info: This issue seems to only apply to IOS running 60hz. > > I'll look further into resolving this issue soon. > > Some of our...
You should paste your code here along with a link to download the Lottie file that’s causing the crash. That would help others reproduce and test the issue. Since you...
It seems this might resolve to a dead end. If that is the case, would it be doable for flutter team to take over or implement from scratch? `better_player` has...
I'm experiencing the same issue on iOS 18.4.1. After several hot reloads, the behavior is inconsistent—sometimes the products load correctly, and other times an error occurs. I added a await...
Hello Alex, I eventually noticed that thumbs are never squared whatever is the original file. Can you test it by removing any fit in the widget used to display the...
My bad, but it is not required. You can just print width and height of the returned thumbnail, it is not a squared image, whatever the original pic.
Yes. The black area inside the image is "part of the image itself", hence BoxFit.cover cannot do the job (the "cover" fit property is already applied when black area is...
@darshankawar just noticed that the error was caused by using a difference value for the Container width, it should be `width: bubbleMaxWidth -20,` instead of `width: bubbleMaxWidth.` I fixed this...