Timo Bähr

Results 5 comments of Timo Bähr

Cannot really help you much, but I'm using StaggeredGridView inside a Sliver (compare https://app.ehwplus.com/#/news) or my iOS/Android app.

> @Josecodesalot you can use [`package:fetch_client`](https://pub.dev/packages/fetch_client) to support streaming on web for now (until `BrowserClient` is [migrated to the Fetch API](https://github.com/dart-lang/http/issues/595)). That is how [`package:openai_dart`](https://pub.dev/packages/openai_dart) client supports streaming in all...

I extracted these lines of code from `utf` library (https://pub.dev/packages/utf). Not sure about legal requirements. The code is licensed under BSD-3. ```dart /// Invalid codepoints or encodings may be substituted...

Using this inside Flutter Web project. Is working fine. I think this issue can be closed. You can try out here: https://app.ehwplus.com/#/features After two lines magic begins to happen.

Flutter 3.3 introduced `SelectionArea` widget for that purpose. Unfortunatelly it does not have an effect on `ExpandableText`. **Reason:** Library is using `TextSpan` and `RichText` under the hood. This is not...