An open API service indexing awesome lists of open source software.

https://github.com/11shraddha/customshapedbottombar

Custom Shaped Bottom Navigation Bar in Flutter
https://github.com/11shraddha/customshapedbottombar

bottombar bottomnavigationview curved curved-bottom-sheet curved-ui custompaint customshape flutter flutter-examples flutter-ui widget

Last synced: 18 days ago
JSON representation

Custom Shaped Bottom Navigation Bar in Flutter

Awesome Lists containing this project

README

          

# CustomShapedBottomBar
Custom Shaped Bottom Navigation Bar in Flutter

Screenshot 2022-05-06 at 5 52 32 PM

**Usage: **

Add CustomPaint Widget to use this Painter class like this:

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