animated tab buttons.

This commit is contained in:
Faris Armoush
2025-04-30 09:20:02 +03:00
parent fdd5d0feed
commit d8f40badc0

View File

@ -39,11 +39,16 @@ class AnalyticsPageTabsAndChildren extends StatelessWidget {
crossAxisAlignment: CrossAxisAlignment.center, crossAxisAlignment: CrossAxisAlignment.center,
children: [ children: [
...AnalyticsPageTab.values.map( ...AnalyticsPageTab.values.map(
(tab) => AnalyticsPageTabButton( (tab) => AnimatedSwitcher(
switchInCurve: Curves.easeIn,
duration: const Duration(milliseconds: 200),
child: AnalyticsPageTabButton(
key: ValueKey(selectedTab),
tab: tab, tab: tab,
isSelected: tab == selectedTab, isSelected: tab == selectedTab,
), ),
), ),
),
], ],
), ),
), ),