sgrefen

Results 3 comments of sgrefen

I had a similar issue with 0.21 where 0.20 applications produce a blank screen in Chrome when a (different) .21 application had been active in the same browser instance. Running...

One hint is in https://github.com/flutter/flutter/issues/113530 , in the thread the recommendation is to use Text.rich instead of RichText. Text.dart: ``` return control.attrBool("selectable", false)! ? (spans.isNotEmpty) ? SelectableText.rich( TextSpan(text: text, style:...

The following patch seems to fix it: ``` git diff -u ../packages/flet/lib/src/controls/text.dart diff --git a/packages/flet/lib/src/controls/text.dart b/packages/flet/lib/src/controls/text.dart index 7d489e5..54d8217 100644 --- a/packages/flet/lib/src/controls/text.dart +++ b/packages/flet/lib/src/controls/text.dart @@ -116,8 +116,9 @@ class TextControl extends...