LongCatIsLooong
LongCatIsLooong
It's going to be a bit challenging to fix. Before sending the app to the background, iOS first puts the app in light mode and takes a screenshot, and then...
@w4mxl sorry for the late reply. Looks like the documentation doesn't match the behavior of `SwitchListTile.adaptive` on iOS, but I'm not sure who's in the wrong here. Maybe it's a...
@brandondiamond the API documentation states that the active color should default to `Theme.accentColor` but I'm not sure this is the right thing to do on iOS. The material.io website has...
Update: https://github.com/flutter/flutter/pull/130534 is WIP.
`MenuAnchor` now uses `OverlayPortal`. But it seems the writing direction still isn't correct.
According to the [documentation](https://main-api.flutter.dev/flutter/material/DropdownButton-class.html), the Material 3 `DropdownMenu` class should be used in favor of the old `DropdownMenu` class. And the following code worked fine: ```dart @override Widget build(BuildContext context)...
~If we want to use the stock spell checker on iOS (probably not going to be easy) we would have to make changes to the ios text plugin I think,...
The character is द् , with the 2nd codepoint being a diacritic. The input method set the composing region to `[1, 2)` so the SkParagraph API returned an empty collection...
Yeah I'll either create an issue for the skipped test or fix the implementation.