How to make a line dash in Flutter like this?
// garis putus putus Row( children: List.generate(150~/10, (index) => Expanded( child: Container( color: index%2==0?Colors.transparent :Colors.grey, height: 2, ), )), ),