delfme
delfme
@dkwingsmt you can also try your sample https://github.com/flutter/flutter/issues/150824#issue-2374101616 in dark mode with white text - you’ll likely see a different letter spacing, which is related to https://github.com/flutter/flutter/issues/120857.
Hi @darshankawar thx for looking into this. Indeed not having a sample app on appstore makes it hard to debug this issue. We tried to simulate issue in a different...
It is not: the appstore's open button is displayed correctky after the update, issue is when user taps it and flutter app will then show a wrong screen. For those...
Hello @darshankawar we have tried a few hrs but to no avail. We can't even tell whether it is url_lancher or AppLifeCycleState issue. We shared above a workaround. Feel free...
@darshankawar Here is an idea which uses a flutter default sample app + another screen `UpgradeAppScreen` that we provide below to be used as it is (copy/paste): **Requirement:** Be "AppName",...
I also tried this: ``` final option = FilterOption(); FilterOptionGroup filter = FilterOptionGroup(); filter.setOption(AssetType.video, option); currentAlbum = _currentAlbum.copyWith(filterOption: filter); final assetEntities = await _currentAlbum.getAssetListPaged(page: pageIndex, size: pageSize); ``` But I...
This also is not working. ``` currentAlbum = _currentAlbum.copyWith(type: RequestType.video); final assetEntities = await _currentAlbum.getAssetListPaged(page: pageIndex, size: pageSize); ```
While doing these tests, I might also discovered a bug. If `type` is set to `RequestType.common`, then the sorting will be wrong (createAt sorting is no longer respected) ``` currentAlbum...
@AlexV525 @CaiJingLong hope you don't mind me mentioning, but I’m currently blocked on this issue and was hoping you might have a quick workaround. I'm allowing the user to filter...