📜  颤动水平线 - Dart 代码示例

📅  最后修改于: 2022-03-11 14:48:07.684000             🧑  作者: Mango

代码示例3
Container(
      color:Colors.white,
      child: (
        Row(
          children: [
            Padding(
              padding: const EdgeInsets.all(8.0),
              child: Image(
                  height: 100,
                  width: 100,
                  image: NetworkImage("https://www.gstatic.com/webp/gallery/1.jpg"),
                ),
            ),
            Column(
              children: [
                Text("Book Name"),
                Text("Author name"),

                Divider(
                  color: Colors.black,
                )
              ],
            )
          ],
        )
      ),
    ),