text_editing_watcher 1.0.0
text_editing_watcher: ^1.0.0 copied to clipboard
A widget that rebuilds when text is changed in TextEditingController
text_editing_watcher #
A widget that rebuilds when text is changed in TextEditingController
Getting Started #
This simple widget can be used in order to rebuild other widgets based on changes in TextEditingController
TextEditingWatcher(
controller: _controller,
builder: (text) => Text(
'You typed: $text',
textAlign: TextAlign.start,
),
)
copied to clipboard
// use TextEditingWatcher for disabling butting when text is empty
TextEditingWatcher(
controller: _controller,
builder: (text) => RaisedButton(
child: Text('submit'),
onPressed: text.isNotEmpty ? () {} : null,
),
)
copied to clipboard