📜  flutter line# - 任何代码示例

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

代码示例1
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,
                )
              ],
            )
          ],
        )
      ),
    ),