How could i add divider to list? I use flatter for android. I want to add a divider between each line and I want to colorize the divider and add styles.
I tried to
following this Just add Divider() :
Column(
children: [
Container(
padding: EdgeInsets.all(16.0),
child: Column(
children: [
Image.network(video["imageUrl"]),
Container(
height: 6.0,
),
Text(
video["name"],
textScaleFactor: 1.05,
style: TextStyle(fontWeight: FontWeight.bold),
),
],
),
),
Divider(
color: Theme.of(context).primaryColor,
)
],
);