Skip to content

Instantly share code, notes, and snippets.

@theindianappguy
Created May 18, 2020 15:47
Show Gist options
  • Save theindianappguy/ea27fa3b00b259ae8e696dd84b296b28 to your computer and use it in GitHub Desktop.
Save theindianappguy/ea27fa3b00b259ae8e696dd84b296b28 to your computer and use it in GitHub Desktop.
InkWell(
onTap: () {
if (searchController.text != "") {
Navigator.push(
context,
MaterialPageRoute(
builder: (context) => SearchView(
search: searchController.text,
)));
}
},
child: Container(child: Icon(Icons.search))
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment