mark8044

Results 80 comments of mark8044

in the iOS simulator its just a toolbar and no text area, there is a faint grey outlined box where the texture should be but no text area Update: -...

Oddly when clicking on the add a link icon, you can type into that box

Ok I see, thanks for the help with this, it is appreciated! If there is hope to fix the problem with the simulator it would be great to make that...

> Padding(child:Image) ? does it not work? Sort of yes Sort of no ``` itemBuilder: (context, pos) { final nextMedia = _thisMediaList[pos]; return Padding( padding: const EdgeInsets.all(20.0), child: ExtendedImage.network( nextMedia.url,...

I fixed this in a fork (https://github.com/mark8044/PersistentBottomNavBar/tree/fix-scrolltotop), I also submitted a PR https://github.com/BilalShahid13/PersistentBottomNavBar/pull/295, but I think the package author is MIA. So for now you can use my fork and...

Ok here is something interesting, this bug is occurring when I use `flutter_widget_from_html_core: ^0.8.5+3` + `fwfh_selectable_text: ^0.8.3` If I use `flutter_widget_from_html: ^0.8.5` or `flutter_widget_from_html_core: ^0.8.5+3` alone, then this bug does...

> The selectable variant uses a different widget to render so it may work differently. Starting from Flutter 3, that widget is no longer needed though. > > Which Flutter...

> Apparently `SelectionArea` is available in the Flutter 3.1 beta. Have you tried this version? Not yet, I'm only on master channel, so I will wait until 3.1 becomes official....

I accomplished this, however I did it by having multiple HtmlWidget inside a listview, and give each HtmlWidget a GlobalKey, then I could scroll to the specific one I wanted....

> Can you give an example code? I guess that would defeat that purpose as we can just use multiple native RichText elements? > > Here is what I have...