Environment
7.7.0
Describe your question
I willing to know if its possible to select all text within a form field with a double tap, something like this.
I am able to do the selection on the field, but could not attribute it to the field, my code:
(...)
GestureDetector(
onDoubleTap: (() {
final String email =
controller.formKey.currentState!.fields['email']!.value;
TextSelection(baseOffset: 0, extentOffset: email.length);
}),
(..)
Environment
7.7.0
Describe your question
I willing to know if its possible to select all text within a form field with a double tap, something like this.
I am able to do the selection on the field, but could not attribute it to the field, my code: