Skip to content

Instantly share code, notes, and snippets.

View emreakcan's full-sized avatar
🎻
Playing

Emre emreakcan

🎻
Playing
View GitHub Profile
@emreakcan
emreakcan / main.dart
Created December 23, 2019 08:47
Highlight textinput on focus flutter
void highlightTextFieldOnFocus(FocusNode node, TextEditingController controller){
node.addListener((){
if(node.hasFocus){
final newText = controller.text;
controller.value = controller.value.copyWith(
text: newText,
selection: TextSelection(baseOffset: 0, extentOffset: newText.length),
composing: TextRange.empty,
);