Initial commit

This commit is contained in:
admin1
2026-07-14 11:11:36 +08:00
commit 656499cf94
604 changed files with 119518 additions and 0 deletions
+70
View File
@@ -0,0 +1,70 @@
import 'package:flutter/material.dart';
import '../theme/app_theme.dart';
class PillTabBar extends StatelessWidget {
final List<String> tabs;
final int selectedIndex;
final ValueChanged<int> onSelect;
final EdgeInsetsGeometry padding;
const PillTabBar({
super.key,
required this.tabs,
required this.selectedIndex,
required this.onSelect,
this.padding = EdgeInsets.zero,
});
@override
Widget build(BuildContext context) {
final theme = Theme.of(context);
final tokens = context.appTokens;
final isDark = theme.brightness == Brightness.dark;
final activeBg = theme.colorScheme.primary.withValues(alpha: 0.12);
final activeFg = theme.colorScheme.primary;
final idleBg = isDark
? Colors.white.withValues(alpha: 0.04)
: Colors.black.withValues(alpha: 0.03);
return Padding(
padding: padding,
child: SingleChildScrollView(
scrollDirection: Axis.horizontal,
child: Row(
children: List.generate(tabs.length, (i) {
final selected = i == selectedIndex;
return Padding(
padding: const EdgeInsets.only(right: 8),
child: GestureDetector(
onTap: () => onSelect(i),
child: AnimatedContainer(
duration: const Duration(milliseconds: 150),
padding: const EdgeInsets.symmetric(
horizontal: 16,
vertical: 8,
),
decoration: BoxDecoration(
color: selected ? activeBg : idleBg,
borderRadius: BorderRadius.circular(20),
),
child: Text(
tabs[i],
style: TextStyle(
fontSize: 13,
fontWeight: selected ? FontWeight.w600 : FontWeight.w500,
color: selected ? activeFg : tokens.mutedForeground,
),
),
),
),
);
}),
),
),
);
}
}