Commit 636fa1ab authored by Adam Barth's avatar Adam Barth

Merge pull request #1056 from abarth/list_item_padding

Ink well in ListItem doesn't fill MaterialList
parents 04d542b1 ab614847
...@@ -46,11 +46,11 @@ class ListItem extends StatelessComponent { ...@@ -46,11 +46,11 @@ class ListItem extends StatelessComponent {
)); ));
} }
return new Padding( return new InkWell(
padding: const EdgeDims.symmetric(horizontal: 16.0), onTap: onTap,
child: new InkWell( onLongPress: onLongPress,
onTap: onTap, child: new Padding(
onLongPress: onLongPress, padding: const EdgeDims.symmetric(horizontal: 16.0),
child: new Row(children) child: new Row(children)
) )
); );
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment