How to add line dash in Flutter

前端 未结 10 1029
清歌不尽
清歌不尽 2021-02-07 02:54

How to make a line dash in Flutter like this?

10条回答
  •  一向
    一向 (楼主)
    2021-02-07 03:16

    // garis putus putus
    Row(
    children: List.generate(150~/10, (index) => Expanded(
     child: Container(
      color: index%2==0?Colors.transparent
      :Colors.grey,
      height: 2,
     ),
     )),
    ),
    

提交回复
热议问题