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 { ...@@ -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