Flutter Circle Design

后端 未结 5 2046
旧巷少年郎
旧巷少年郎 2021-01-31 02:20

I want to make this kind of design with these white circles as a raised button.

5条回答
  •  被撕碎了的回忆
    2021-01-31 03:06

    I would use a https://docs.flutter.io/flutter/widgets/Stack-class.html to be able to freely position widgets.

    To create circles

      new BoxDecoration(
        color: effectiveBackgroundColor,
        image: backgroundImage != null
          ? new DecorationImage(image: backgroundImage, fit: BoxFit.cover)
          : null,
        shape: BoxShape.circle,
      ),
    

    and https://docs.flutter.io/flutter/widgets/Transform/Transform.rotate.html to position the white dots.

提交回复
热议问题