📌  相关文章
📜  不正确地使用 parentdatawidget. - 无论代码示例

📅  最后修改于: 2022-03-11 15:00:27.681000             🧑  作者: Mango

代码示例1
Row(
    children: [
      Expanded(
        child: Column(
          children: [
            Container(
              padding: EdgeInsets.only(bottom: 8.0),
              child: Text(
                "Some Lage Somthing",
                style: TextStyle(fontWeight: FontWeight.bold),
              ),
            ),
            Text("Someplace, Country")
          ],
        ),
      ),
      Icon(Icons.star)
    ],
  ),
);