text_editing_watcher 1.0.0 copy "text_editing_watcher: ^1.0.0" to clipboard
text_editing_watcher: ^1.0.0 copied to clipboard

discontinued

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,
                ),
              )

          // use TextEditingWatcher for disabling butting when text is empty
          TextEditingWatcher(
            controller: _controller,
            builder: (text) => RaisedButton(
              child: Text('submit'),
              onPressed: text.isNotEmpty ? () {} : null,
            ),
          )
1
likes
40
pub points
38%
popularity

Publisher

unverified uploader

A widget that rebuilds when text is changed in TextEditingController

Repository (GitHub)
View/report issues

License

MIT (LICENSE)

Dependencies

flutter

More

Packages that depend on text_editing_watcher