LanarsInc / animated-bottom-navigation-bar-flutter

AnimatedBottomNavigationBar is a customizable widget inspired by
https://dribbble.com/shots/7134849-Simple-Tab-Bar-Animation
Other
370 stars 108 forks source link

FAB is square #64

Closed adrianvintu closed 11 months ago

adrianvintu commented 11 months ago

After updating to flutter 3.16.4, the FAB is square! Can you make it round again?

flutter doctor Doctor summary (to see all details, run flutter doctor -v): [√] Flutter (Channel stable, 3.16.4, on Microsoft Windows [Version 10.0.19044.3086], locale de-DE) [√] Windows Version (Installed version of Windows is version 10 or higher) [√] Android toolchain - develop for Android devices (Android SDK version 33.0.1) [√] Chrome - develop for the web [√] Visual Studio - develop Windows apps (Visual Studio Build Tools 2022 17.5.1) [√] Android Studio (version 2023.1) [√] VS Code (version 1.85.1) [√] Connected device (4 available) [√] Network resources

Screenshot_1703855699

adrianvintu commented 11 months ago

The fix was to add

      floatingActionButtonTheme: FloatingActionButtonThemeData(
        shape: CircleBorder(),
      ),

to final ThemeData base = ThemeData(...