Skip to content

Instantly share code, notes, and snippets.

@azamsharp
Created December 9, 2019 20:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save azamsharp/fe07ae0322c4df183318922dddb4199c to your computer and use it in GitHub Desktop.
Save azamsharp/fe07ae0322c4df183318922dddb4199c to your computer and use it in GitHub Desktop.
Container(
padding: EdgeInsets.only(left: 10),
decoration: BoxDecoration(
color: Colors.grey,
borderRadius: BorderRadius.circular(10)
),
child: TextField(
controller: _controller,
onSubmitted: (value) {
if(value.isNotEmpty) {
vm.fetchMovies(value);
_controller.clear();
}
},
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment