Skip to content

Instantly share code, notes, and snippets.

@munificent
Created March 14, 2019 22:25
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 munificent/7c781e0f6740c5ffd20c19fcb09b4194 to your computer and use it in GitHub Desktop.
Save munificent/7c781e0f6740c5ffd20c19fcb09b4194 to your computer and use it in GitHub Desktop.
Widget build(BuildContext context) {
var children = [
IconButton(icon: Icon(Icons.menu)),
Expanded(child: title)
];
if (!isAndroid) {
children.add(IconButton(icon: Icon(Icons.search)));
}
return Row(children: children);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment