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
+58
View File
@@ -0,0 +1,58 @@
import 'package:flutter/material.dart';
import '../theme/app_theme.dart';
class MetadataChip extends StatelessWidget {
final IconData? icon;
final String label;
final Color? foreground;
final Color? background;
final bool dense;
const MetadataChip({
super.key,
required this.label,
this.icon,
this.foreground,
this.background,
this.dense = false,
});
@override
Widget build(BuildContext context) {
final theme = Theme.of(context);
final tokens = context.appTokens;
final fg = foreground ?? tokens.mutedForeground;
final bg =
background ?? theme.colorScheme.onSurface.withValues(alpha: 0.07);
return Container(
padding: EdgeInsets.symmetric(horizontal: dense ? 6 : 7, vertical: 2),
decoration: BoxDecoration(
color: bg,
borderRadius: BorderRadius.circular(4),
),
child: Row(
mainAxisSize: MainAxisSize.min,
children: [
if (icon != null) ...[
Icon(icon, size: 12, color: fg),
const SizedBox(width: 3),
],
Flexible(
child: Text(
label,
maxLines: 1,
overflow: TextOverflow.ellipsis,
style: theme.textTheme.labelSmall?.copyWith(
color: fg,
fontSize: 10,
letterSpacing: 0.2,
),
),
),
],
),
);
}
}