import 'package:flutter/material.dart'; class BalanceHeader extends StatelessWidget { final String title; final String? subtitle; final String? badge; const BalanceHeader({ super.key, required this.title, this.subtitle, this.badge, }); @override Widget build(BuildContext context) { final textTheme = Theme.of(context).textTheme; final colorScheme = Theme.of(context).colorScheme; final subtitleText = subtitle?.trim(); final badgeText = badge?.trim(); return Row( children: [ Expanded( child: Column( crossAxisAlignment: CrossAxisAlignment.start, children: [ Text( title, style: textTheme.titleMedium?.copyWith( color: colorScheme.onSurface, ), ), if (subtitleText != null && subtitleText.isNotEmpty) Text( subtitleText, style: textTheme.bodySmall?.copyWith( color: colorScheme.onSurfaceVariant, fontWeight: FontWeight.w500, ), ), ], ), ), if (badgeText != null && badgeText.isNotEmpty) ...[ const SizedBox(width: 8), Container( padding: const EdgeInsets.symmetric(horizontal: 10, vertical: 6), decoration: BoxDecoration( color: colorScheme.primaryContainer, borderRadius: BorderRadius.circular(999), ), child: Text( badgeText, style: textTheme.bodyMedium?.copyWith( color: colorScheme.onPrimaryContainer, fontWeight: FontWeight.w600, ), ), ), ], ], ); } }