lukepighetti / salomon_bottom_bar

Yet another bottom navigation bar, but with a few key promises.
https://pub.dev/packages/salomon_bottom_bar
MIT License
258 stars 55 forks source link

Button ink well splash only appears on the inner part of the button on expand animation (Material 3) #47

Open rikbrown opened 1 year ago

rikbrown commented 1 year ago

See video (pay attention to the ink splashes in the buttons):

https://github.com/lukepighetti/salomon_bottom_bar/assets/2906188/aac5d6f8-3f24-4980-a07f-dd0a41f607c1

This is reproducible when using the following MaterialApp config:

   theme: FlexThemeData.light(
        // scheme: usedScheme,
        useMaterial3: true,
        appBarElevation: 0,
        textTheme: GoogleFonts.latoTextTheme(),
      ),

I think it might be an issue with changed animations in Material 3? When I turn that off, it looks a lot better. I'll experiment and see if it's easy to fix at some point if I decide to keep using this package, if it's not a known issue by the developer.

Thanks!