Brandon Trautmann

Results 134 comments of Brandon Trautmann

I can't speak to this _exact_ issue, but I'm having a similar error on version `0.63.0`, and it seems to be [this line](https://github.com/imaNNeo/fl_chart/blob/master/lib/src/chart/line_chart/line_chart_renderer.dart#L27). In my logs I'm seeing the user...

It's been over 3 years and I can say with a fair level of confidence that I will never come back to this to address it. Because it's such a...

Hi all, I'm developing Lumy for YNAB (think of it like Toolkit for mobile, except it just adds charts/reporting and doesn't augment first party UI, since that's not a thing...

Because I promised to do so, I'm posting an update here: I heard back from YNAB (specifically from Danielle, who is awesome by the way!). It's a good news bad...

> I think you can write an `isEmoji` extension like this: Unfortunately I don't think that will be exhaustive, consider the following using that implementation: ```dart void main() { const...

> Maybe with the regex like that: > > ```dart > static final _isEmojiRegex = RegExp( > r'[\p{Extended_Pictographic}\p{Emoji_Presentation}]', > unicode: true); > ``` This seemingly works at least for my...

Not sure if this helps, but they're documented (IMO) pretty well here: - https://unicode.org/reports/tr51/#Emoji_Characters - https://unicode.org/reports/tr51/#Emoji_Properties_and_Data_Files

We're achieving this by doing it prior to passing the lcov report to this action by using [remove_from_coverage](https://pub.dev/packages/remove_from_coverage). Our entire script looks something like: ``` set -e set -o pipefail...

Ran into this myself recently. This limitation forces you to do the following if wanting to swap only a collection: ```kotlin val requestMapping = RequestPattern( originalRequest.scheme, originalRequest.host, originalRequest.port, originalRequest.urlMatcher, originalRequest.method,...