66 lines
1.7 KiB
Dart
66 lines
1.7 KiB
Dart
import 'package:flutter/material.dart';
|
|
|
|
/// A small badge widget that indicates which server content is from
|
|
/// Shows server name or first letter with optional tooltip
|
|
class ServerBadge extends StatelessWidget {
|
|
final String? serverName;
|
|
final Color? backgroundColor;
|
|
final Color? textColor;
|
|
final double size;
|
|
final bool showFullName;
|
|
|
|
const ServerBadge({
|
|
super.key,
|
|
required this.serverName,
|
|
this.backgroundColor,
|
|
this.textColor,
|
|
this.size = 20,
|
|
this.showFullName = false,
|
|
});
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
if (serverName == null || serverName!.isEmpty) {
|
|
return const SizedBox.shrink();
|
|
}
|
|
|
|
final theme = Theme.of(context);
|
|
final bgColor =
|
|
backgroundColor ??
|
|
theme.colorScheme.primaryContainer.withValues(alpha: 0.8);
|
|
final fgColor = textColor ?? theme.colorScheme.onPrimaryContainer;
|
|
|
|
final displayText = showFullName
|
|
? serverName!
|
|
: serverName!.substring(0, 1).toUpperCase();
|
|
|
|
final badge = Container(
|
|
padding: EdgeInsets.symmetric(
|
|
horizontal: showFullName ? 6 : 4,
|
|
vertical: 2,
|
|
),
|
|
decoration: BoxDecoration(
|
|
color: bgColor,
|
|
borderRadius: BorderRadius.circular(4),
|
|
),
|
|
child: Text(
|
|
displayText,
|
|
style: TextStyle(
|
|
color: fgColor,
|
|
fontSize: showFullName ? 10 : 11,
|
|
fontWeight: FontWeight.w600,
|
|
height: 1.2,
|
|
),
|
|
),
|
|
);
|
|
|
|
// If showing full name, no need for tooltip
|
|
if (showFullName) {
|
|
return badge;
|
|
}
|
|
|
|
// Show tooltip with full server name on hover/long press
|
|
return Tooltip(message: serverName!, child: badge);
|
|
}
|
|
}
|