Skip to content

Instantly share code, notes, and snippets.

@lamberger
Last active October 27, 2019 19:11
Show Gist options
  • Select an option

  • Save lamberger/72b357bee640d06bf591d3538f21bcfe to your computer and use it in GitHub Desktop.

Select an option

Save lamberger/72b357bee640d06bf591d3538f21bcfe to your computer and use it in GitHub Desktop.
GestureDetector Icon TapDart Flutter
Card(
child: ListTile(
leading: GestureDetector(
behavior: HitTestBehavior.translucent,
onTap: () {
print('Icon-tryck');
},
child: Container(
width: 48,
height: 48,
padding: EdgeInsets.symmetric(vertical: 4.0),
alignment: Alignment.center,
child: CircleAvatar(),
),
),
title: Text('Lamberger'),
subtitle: Text('Lite text som sub...t'),
trailing: Icon(Icons.more_vert),
),
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment