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
Put your widget inside container with BoxDecoration as
Container( child: YourWidgetHere(), decoration: BoxDecoration( border: Border(bottom: BorderSide(color: Colors.black26))), );