Skip to content

Instantly share code, notes, and snippets.

@sbis04

sbis04/main.dart Secret

Created May 30, 2020 09:16
Show Gist options
  • Save sbis04/399a5b21175238789ebc11a83cc335c3 to your computer and use it in GitHub Desktop.
Save sbis04/399a5b21175238789ebc11a83cc335c3 to your computer and use it in GitHub Desktop.
// Design for current location button
ClipOval(
child: Material(
color: Colors.orange[100], // button color
child: InkWell(
splashColor: Colors.orange, // inkwell color
child: SizedBox(
width: 56,
height: 56,
child: Icon(Icons.my_location),
),
onTap: () {
// TODO: Add the operation to be performed
// on button tap
},
),
),
),
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment