如何重叠这两个小部件

发布于 2025-01-24 03:40:13 字数 1597 浏览 0 评论 0原文

圆圈阿凡达和容器的预期输出

当前情况,圆avatar不在顶部

    return Scaffold(
      body: Column(
        children: [
          Row(
            children: [
              Padding(
                padding: EdgeInsets.only(top:screenLayout(45, context),left: screenLayout(55, context)),
                child: Text('My Profile',
                 style: TextStyle(
                   fontWeight: FontWeight.bold,
                   color: color_mode.tertiaryColor,
                   letterSpacing: 1.3,
                   fontSize: screenLayout(43, context),
                   //add font later
                   //--//
                 ),
         ),
              ),
            ],
          ),
          verticalSpace(40, context),
          Stack(
            children: [
              Positioned(
                child: Container(
                  height: getHeight(context)/3,
                  width: getWidth(context)/1.13,
                  decoration: const BoxDecoration(
                    color: Colors.grey
                  ),
                ),
              ),
               Positioned(
                left: getWidth(context)/3.7,
                  top: getHeight(context)/4,
                  child: CircleAvatar(
                    maxRadius: screenLayout(130, context),
                  ),
               ),
            ],
          ),
        ],
      ),
      );

Expected output of circle avatar and Container

Current situation, the circle avatar is not on top

    return Scaffold(
      body: Column(
        children: [
          Row(
            children: [
              Padding(
                padding: EdgeInsets.only(top:screenLayout(45, context),left: screenLayout(55, context)),
                child: Text('My Profile',
                 style: TextStyle(
                   fontWeight: FontWeight.bold,
                   color: color_mode.tertiaryColor,
                   letterSpacing: 1.3,
                   fontSize: screenLayout(43, context),
                   //add font later
                   //--//
                 ),
         ),
              ),
            ],
          ),
          verticalSpace(40, context),
          Stack(
            children: [
              Positioned(
                child: Container(
                  height: getHeight(context)/3,
                  width: getWidth(context)/1.13,
                  decoration: const BoxDecoration(
                    color: Colors.grey
                  ),
                ),
              ),
               Positioned(
                left: getWidth(context)/3.7,
                  top: getHeight(context)/4,
                  child: CircleAvatar(
                    maxRadius: screenLayout(130, context),
                  ),
               ),
            ],
          ),
        ],
      ),
      );

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

要走就滚别墨迹 2025-01-31 03:40:13

尝试在较大的范围中使用堆栈,也许是在列之外。

Try to use stack in a bigger scope, maybe outside the column.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文