1

I have a box with text, this box has a scroll.

enter image description here

I want to be able to tap on a button and select the text "products". If the text that I want to select is not on the screen, I need to jump into it.

enter image description here

Is it possible using Flutter web or desktop?

Felipe
  • 69
  • 5

1 Answers1

0

You can use SelectableText() widget instead of normal Text() widget

  • Yeah. I'm using it. But how can I jump to parts of the text? Like a find in text (cmd f, ctrl f). – Felipe Jan 28 '23 at 14:32