颤振 |我想在左侧添加小部件怎么办?

Flutter | I want add widget in left side how?

我正在使用 flutter 制作应用程序,如何在左侧添加另一个文本小部件 (我是 Flutter 新手)

Use Row Widget.

  Row(  
    mainAxisAlignment: MainAxisAlignment.spaceAround,
  children: [
    Text('Hello Flutter'),

    const Icon(
      Icons.schedule,
      size: 18,
      color: Colors.white54,
    ),
    const SizedBox(
      width: 4,
    ),
    const Text(
      ' min',
      style: TextStyle(
        fontSize: 11,
        color:  Color(0xfff1f1f1),
        fontWeight: FontWeight.w700,
      ),
    ),
  ],
);

试试下面的回答希望对你有帮助。你可以使用 ListTileRow Widget 参考 ListTile here and Row here

使用ListTile

ListTile(
  leading: CircleAvatar(),
  title: Text(
    'Make a word using letter  \'a\'',
  ),
),

使用 ListTile 的结果屏幕 ->

使用Row

Row(
  mainAxisAlignment: MainAxisAlignment.spaceAround,
  children: [
    CircleAvatar(),
    Text(
      'Make a word using letter  \'a\' ',
    ),
  ],
),   

您的结果屏幕使用 Row->