Skip to content

Instantly share code, notes, and snippets.

@BurningDroid
Created March 26, 2019 14:31
Show Gist options
  • Save BurningDroid/ef680fcc3bf21448249fccec0ac79e5b to your computer and use it in GitHub Desktop.
Save BurningDroid/ef680fcc3bf21448249fccec0ac79e5b to your computer and use it in GitHub Desktop.
Flutter Splash/Ripple effect
Widget _buildItem(Item item) {
return InkWell(
child: Container(
decoration: BoxDecoration(
border: Border.all(
color: Colors.green,
),
borderRadius: BorderRadius.circular(8),
),
child: Padding(
padding: EdgeInsets.all(16),
child: Text(task.name),
),
),
onTap: () {
},
),
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment