You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
You can check [MainActivity.kt](https://github.com/PratikFagadiya/AnimatedSmoothBottomNavigation-JetpackCompose/tree/master/app/src/main/java/com/pratikfagadiya/animatedbottomnavigation/MainActivity.kt) directory for demo. ⭐
59
80
<br />
81
+
<br />
82
+
83
+
## Customisation 🎨
84
+
85
+
With our customizable library, you have the power to customizable library based on your requirement
86
+
you can see how you can customize various properties of the BottomBarProperties object to fit your UI design preferences.
87
+
88
+
Feel free to adjust the `colors`, `sizes`, `font` and other parameters to match your specific requirements.
89
+
90
+
```kotlin
91
+
92
+
Scaffold(bottomBar = {
93
+
SmoothAnimationBottomBar(navController,
94
+
bottomNavigationItems,
95
+
initialIndex = currentIndex,
96
+
bottomBarProperties =BottomBarProperties(
97
+
backgroundColor =Color.Blue, // Change the background color
98
+
indicatorColor =Color.White.copy(alpha =0.2F), // Change the indicator color with Alpha
99
+
iconTintColor =Color.BlueTint, // Change the icon tint color
100
+
iconTintActiveColor =Color.White, // Change the active icon tint color
101
+
textActiveColor =Color.White, // Change the active text color
102
+
cornerRadius =18.dp, // Increase the corner radius
103
+
fontFamily =JostFont, // Change the font family
104
+
fontWeight =FontWeight.Medium, // Change the font weight
105
+
fontSize =16.sp // Increase or Decrease the font size
0 commit comments