child: Row(mainAxisSize: MainAxisSize.min,
        children: [


          Text("Click View",
              style: TextStyle(fontWeight: FontWeight.bold, fontSize: 20, color: Color.fromRGBO(255, 201, 102, 100))),

          Padding(padding: const EdgeInsets.only(left: 10)),
          Image.asset(
            'Assets/Images/hand_icon.png',
          ),

Add sentence below the Click View

我想在点击查看措辞下面添加一句话

推荐答案

child: Row(
  mainAxisSize: MainAxisSize.min,
  children: [
    Column( // Wrap the text and detail sentence in a Column
      children: [
        Text(
          "Click View",
          style: TextStyle(fontWeight: FontWeight.bold, fontSize: 20, color: Color.fromRGBO(255, 201, 102, 100)),
        ),
        Text(
          "Additional detail sentence", // Add your detail sentence here
          style: TextStyle(fontSize: 14, color: Colors.grey), // Customize the style as needed
        ),
      ],
    ),
    Padding(padding: const EdgeInsets.only(left: 10)),
    Image.asset(
      'Assets/Images/hand_icon.png',
    ),
  ],
),

Flutter相关问答推荐

如何创建一个按钮来在Ffltter Webview中转到上一页?

Dexing时出错.将Flutter 升级到3.19.0后

如何实现Flutter 梳理机图像的小量移动

Flutter 日期时间格式

从future 列表到流列表Flutter Firebase

如何在巡逻测试期间重新启动dart 侧应用程序状态?

如何使自动焦点位于已经有一些文本的 TextField 的第一行?

Flutter 未处理的异常 - 对 null 值使用 Null 判断运算符

Flutter:注册 UI 出现 UI 问题(将注册框提升到顶部并向电话号码 pin 码添加一个框)

仅在获取(读取)、Provider 时,Firestore 中的数据为空

有没有办法在没有收缩包装的情况下在列中使用 ListView.Builder?

MediaQuery 在不同手机上不一致

我可以定义一次 sharedPreferences 并在需要数据显示到 flutter 应用程序时调用它吗?

如何从 showModalBottomSheet 中的 topRight 和 topLeft 移除平边

为什么 setState 不改变我的变量 Flutter?

仅使用 Flutter 在本地环境中托管 Web 服务器

Getx Flutter 在更新值时抛出空错误

Flutter:font_awesome_icon pro 版报错?如何设置 font_awesome 克隆仓库的路径?

Flutter Web Responsiveness 效率不高

从 Uint8List 或图像对象创建 InputImageData 用于 Google ML Kit 人脸检测