BilalShahid13 / PersistentBottomNavBar

A highly customizable persistent bottom navigation bar for Flutter
BSD 3-Clause "New" or "Revised" License
506 stars 371 forks source link

Ripple/splash effect for PersistentBottomNavBarItem #226

Open moehmeni opened 2 years ago

moehmeni commented 2 years ago

It would be good to have an optional property or widget builder for a ripple/splash or any touch effect for the tab items (PersistentBottomNavBarItem) . for example using an InkResponse instead of GestureDetector for the tab item widgets

InkResponse(
        splashFactory: InkRipple.splashFactory,
        splashColor: Colors.black12,
        highlightColor: Colors.transparent,
        onTap: () {
          // onTap event
        },
        child: TheWidget() // PersistentBottomNavBarItem
)

Is there any solution to do this right now ?