mirror of
https://github.com/KRTirtho/spotube.git
synced 2025-09-13 16:05:18 +00:00

* feat: add playback history provider * feat: implement recently played section * refactor: use route names * feat: add stats summary and top tracks/artists/albums * feat: add top date based filtering * feat: add stream money calculation * refactor: place search in mobile navbar and settings in home appbar * feat: add individual minutes and streams page * feat(stats): add individual minutes and streams page * chore: default period to 1 month * feat: add text to explain user how hypothetical fees are calculated * chore: ensure usage of route names instead of direct paths * cd: add cache key * cd: remove media_kit_event_loop from git
51 lines
1.5 KiB
Dart
51 lines
1.5 KiB
Dart
import 'package:buttons_tabbar/buttons_tabbar.dart';
|
|
import 'package:flutter/material.dart';
|
|
import 'package:flutter_hooks/flutter_hooks.dart';
|
|
import 'package:spotube/hooks/utils/use_brightness_value.dart';
|
|
|
|
class ThemedButtonsTabBar extends HookWidget implements PreferredSizeWidget {
|
|
final List<Widget> tabs;
|
|
final TabController? controller;
|
|
const ThemedButtonsTabBar({super.key, required this.tabs, this.controller});
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
final theme = Theme.of(context);
|
|
final bgColor = useBrightnessValue(
|
|
theme.colorScheme.primaryContainer,
|
|
Color.lerp(theme.colorScheme.primary, Colors.black, 0.7)!,
|
|
);
|
|
|
|
return Padding(
|
|
padding: const EdgeInsets.only(
|
|
top: 8,
|
|
bottom: 8,
|
|
),
|
|
child: ButtonsTabBar(
|
|
controller: controller,
|
|
radius: 100,
|
|
decoration: BoxDecoration(
|
|
color: bgColor,
|
|
borderRadius: BorderRadius.circular(15),
|
|
),
|
|
labelStyle: theme.textTheme.labelLarge?.copyWith(
|
|
color: theme.colorScheme.primary,
|
|
fontWeight: FontWeight.bold,
|
|
),
|
|
borderWidth: 0,
|
|
unselectedDecoration: BoxDecoration(
|
|
color: theme.colorScheme.background,
|
|
borderRadius: BorderRadius.circular(15),
|
|
),
|
|
unselectedLabelStyle: theme.textTheme.labelLarge?.copyWith(
|
|
color: theme.colorScheme.primary,
|
|
),
|
|
tabs: tabs,
|
|
),
|
|
);
|
|
}
|
|
|
|
@override
|
|
Size get preferredSize => const Size.fromHeight(50);
|
|
}
|