Commit ab614847 authored by Adam Barth's avatar Adam Barth

Ink well in ListItem doesn't fill MaterialList

We need to put the padding on the inside of the list item.

Fixes #1055
parent 04d542b1
......@@ -46,11 +46,11 @@ class ListItem extends StatelessComponent {
));
}
return new Padding(
padding: const EdgeDims.symmetric(horizontal: 16.0),
child: new InkWell(
return new InkWell(
onTap: onTap,
onLongPress: onLongPress,
child: new Padding(
padding: const EdgeDims.symmetric(horizontal: 16.0),
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