Erlend
Erlend
I did expect the `width` function to return 2 for emojis when using the [EastAsianWidth.txt](https://www.unicode.org/Public/15.0.0/ucd/EastAsianWidth.txt) file. ``` println(width("👾")) ``` this returns 1 Is this method supposed to work similar to...
I thought `graphemes("hi❤️🔥")` would return the list: `["h", "i", "❤️🔥"]`, a list of grapheme clusters that i could iterate with: ``` l.foreach fn(c) println(c) ``` which would print out single...
I ran `tool/generate.dart` to update to the latest Unicode spec 15.1.0. I ran tests and benchmarks OK. I set the `CHANGELOG.md` and `pubspec.yaml` to version 1.4.0
May i suggest a slide in side menu as part of the demos (which resizes the map)? Great work, Erlend
I try to run `GitDir.fromExisting(path)` and i get the following error: ``` flutter: ProcessException: /bin/sh: /opt/homebrew/bin/git: Operation not permitted flutter: Command: git rev-parse --git-dir ``` I'm running the command fine...
I tried to do a `pod install` which resulted in the following: ``` [!] CocoaPods could not find compatible versions for pod "RxSwift": In snapshot (Podfile.lock): RxSwift (= 6.1.0) In...
"Fix all imports" does not organize (sort) imports, only makes them relative.
### What version of Elysia.JS is running? is `Elysia` a cli tool ? updating from 0.8.1 -> 1.0.0 ### What platform is your computer? Darwin 23.4.0 arm64 arm ### What...
**Describe the bug 🐛** I have a `FilterState` and listen to the `filterState.filters` stream for updates. When adding filters i receive updates, but not when calling `filterState.clear`. **To Reproduce 🔍**...
I would like a better way to handle optional/null values. I think Swift does this well using the [guard](https://docs.swift.org/swift-book/ReferenceManual/Statements.html#grammar_guard-statement) statement. I especially like this feature in order to unwrap optional...