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/01e6e9f5ff4ecc2b2349777502dc9849 to your computer and use it in GitHub Desktop.

Select an option

Save lamberger/01e6e9f5ff4ecc2b2349777502dc9849 to your computer and use it in GitHub Desktop.
On Tap cardDart - Flutter
body: ListView(
children: <Widget>[
Card(
child: ListTile(
title: Text('Patrik'),
subtitle: Text('Lite text som sub...t'),
trailing: Icon(Icons.alternate_email),
onTap: () {
print('Tryckte på P...');
},
),
),
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment