Previously had weird looking effect that didn't fill the whole tile.
This fixes that by extending ListTile to fill the whole container while
retaining the previous padding for content.
Bug-AGL: SPEC-5261
Change-Id: Icbaa73b86ee6c9f082f9bd433364c543451c5f69
Signed-off-by: Tomi Leppänen <tomi.leppanen@seafarix.com>
children: [
Container(
margin: const EdgeInsets.symmetric(vertical: 8),
- padding: const EdgeInsets.symmetric(vertical: 15),
decoration: const BoxDecoration(
gradient: LinearGradient(
begin: Alignment.centerLeft,
//color: Color(0xFF0D113F),
child: ListTile(
contentPadding:
- const EdgeInsets.symmetric(vertical: 17, horizontal: 24),
+ const EdgeInsets.symmetric(vertical: 32, horizontal: 24),
leading: widget.icon != null
? Icon(
widget.icon,