Provide TextInputController example #285
Unanswered
Hackmodford
asked this question in
Q&A
Replies: 1 comment
-
You do something like this: final controller = TextEditingController();
late final controller$ = valueNotifierToSignal(controller);
...
effect(() {
controller$.value.text; // Text string value
}); |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Forgive me if this already exists. But I'm struggling to understand how to use Signals with a TextEditingController.
For example creating a computed signal based on text changing.
Beta Was this translation helpful? Give feedback.
All reactions