颤抖如何设置堆栈小部件的样式

时间:2020-09-04 06:08:36

标签: flutter flutter-layout

我如何才能使我的Stack小部件风格化,以获得这样的布局

enter image description here

1 个答案:

答案 0 :(得分:2)

  1. 您可以使用Stack小部件将两个视图相互叠加。
  2. boxShadow应用于较小的容器,以使其具有视图中呈现的那种效果。

我添加了一个演示:

Stack(
      children: [
        Container(
          height: 80,
          width: 80,
          decoration: new BoxDecoration(
            shape: BoxShape.circle,
            color: Colors.purple,
          ),
          child: Center(
            child: Text(
              'b',
              style: TextStyle(
                fontSize: 50,
                color: Colors.white,
                fontWeight: FontWeight.bold,
              ),
            ),
          ),
        ),
        Positioned(
          bottom: 0, // change the values to preferred values
          right: 5, // change the values to preferred values
          child: Container(
            height: 25,
            width: 25,
            decoration: BoxDecoration(
              shape: BoxShape.circle,
              color: Colors.white,
              boxShadow: [
                BoxShadow(
                  offset: Offset(0.0, 1),
                  spreadRadius: 2,
                  blurRadius: 2,
                  color: Colors.black.withOpacity(
                    0.2,
                  ),
                ),
              ],
            ),
            child: Center(
              child: Icon(
                Icons.camera,
                size: 15,
              ),
            ),
          ),
        ),
      ],
    );

结果:

result