flutter绝对定位

Stack(
        textDirection: TextDirection.rtl,
        fit: StackFit.loose,
        alignment: Alignment.bottomLeft,
        clipBehavior: Clip.none,
        children: [
          yellowBox,
          redBox,
          Positioned(
            bottom: 10,
            right: -30,
            child: greenBox,
          )
        ],
      ),

如下图如果要实现这样的效果

flutter绝对定位_第1张图片

在访客数那一层

flutter绝对定位_第2张图片

你可能感兴趣的:(flutter,flutter)