Made AnalyticsPageTabsAndChildren responsive.

This commit is contained in:
Faris Armoush
2025-04-30 09:14:30 +03:00
parent 1923ac7014
commit fb1f79c7bb

View File

@ -30,14 +30,28 @@ class AnalyticsPageTabsAndChildren extends StatelessWidget {
mainAxisAlignment: MainAxisAlignment.start,
crossAxisAlignment: CrossAxisAlignment.center,
children: [
...AnalyticsPageTab.values.map(
(tab) => Expanded(
child: AnalyticsPageTabButton(
tab: tab,
isSelected: tab == state.selectedTab,
Expanded(
flex: 4,
child: FittedBox(
alignment: AlignmentDirectional.centerStart,
fit: BoxFit.scaleDown,
child: Row(
spacing: 32,
mainAxisSize: MainAxisSize.min,
mainAxisAlignment: MainAxisAlignment.start,
crossAxisAlignment: CrossAxisAlignment.center,
children: [
...AnalyticsPageTab.values.map(
(tab) => AnalyticsPageTabButton(
tab: tab,
isSelected: tab == state.selectedTab,
),
),
],
),
),
),
const Spacer(),
const Expanded(
flex: 2,
child: FittedBox(