CustomShapedBottomBar (自定义形状底部导航栏)

Flutter 中的自定义形状底部导航栏。

Screenshot 2022-05-06 at 5 52 32 PM

**用法: **

添加 CustomPaint Widget 来使用这个 Painter 类,像这样

        Container(
          height: 200,
          width: 400,
          padding: const EdgeInsets.only(top: 80.0),
          child: CustomPaint(
            painter: ProfileCardPainter(
                color: AppColors.themeGoldColor, avatarRadius: 30), //3
          ),
        )

GitHub

查看 Github