flutter divider: How could i add divider between each line in my code?

前端 未结 7 1373
野趣味
野趣味 2020-12-02 12:00

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

7条回答
  •  刺人心
    刺人心 (楼主)
    2020-12-02 12:48

    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,
                      )
                    ],
                  );                                                                           
    

提交回复
热议问题