CustomShapedBottomBar (自定义形状底部导航栏)
Flutter 中的自定义形状底部导航栏。
**用法: **
添加 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
),
)
