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 {
));
}
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