znjameswu
znjameswu
Follows #8 See also: https://github.com/znjameswu/flutter_math/blob/master/doc/line_breaking.md
Here is a dedicated issue for the implementation of UnicodeMath spec. After some quick experiment, I find some quite burning discrepencies in the UnicodeMath. The following discrepencies will directly affect...
Currently there is no good way of intercepting IME's key event in Flutter, e.g. Backspace, Enter, Home, End, Up, Down, etc, which is essential for the implementation of UnicodeMath-style editing....
This is an issue with the current beta version of Flutter Web. https://github.com/flutter/flutter/issues/63460
This is a bug of Flutter's `TextSelectionGestureDetector` https://github.com/flutter/flutter/issues/69001 For some reason, it appeared way more often on `SelectableMath` than in vanilla Flutter's `SelectableText`.
Currently `SelectableMath` employed a hack to get righ-click context menu on desktop web, as discussed in https://github.com/znjameswu/flutter_math/issues/10#issuecomment-714297030. However this has an unexpected side effect, because it breaks mobile browsers's selection...
Currently there are `splitBefore`, `splitAfter`, `splitBetween` and their indexed versions in the iterable extensions. Similarly, we can also have a `splitAt` extension ```dart Iterable splitAt(bool Function(T element) test) ``` It...