Ron Booth
Ron Booth
@danagbemava-nc, I noticed the same bug. Here's a link to code that consistently reproduces the issue in the iOS simulator: https://gist.github.com/ronjb/932fc50c83082d5271ca39d7c2dc64dc Here's what it looks like after scrolling: ![Simulator Screen...
Selection word by word is by design. If you want letter by letter selection, use Flutter's SelectableRegion and related classes.
As mentioned in the readme, Selectable cannot wrap scrollable widgets such as ListView. You can, however, wrap each item in the list with a Selectable. This probably only makes sense...
Just to make sure I understand your question: You want an option that restricts the user to selecting only one word?
In main.dart of the example app, on line 148 you'll see this: ```Dart final selection = controller?.getSelection(); final startIndex = selection?.startIndex; final endIndex = selection?.endIndex; ``` It gets the selection...
@vishalpatel1327, Just to make sure I understand what you're asking. After a word is selected, for example "consectetur", if that word is tapped you want to do something, for example,...
The way I use Selectable doesn't exhibit this problem, but I'm using it for a large amount of rich text interspersed with other widgets, so there's always room for the...
The latest version (0.3.3) supports previous version of float_column, and has looser restrictions on the dart and flutter sdk versions. Let me know if you still see problems.