- Replace Image.network (no cache) with CachedNetworkImage in contributor_profile_screen - Replace NetworkImage (no cache) with CachedNetworkImageProvider in desktop_topbar and contribute_screen (leaderboard avatars) - Add maxWidthDiskCache + maxHeightDiskCache to all 23 CachedNetworkImage calls - Add missing memCacheWidth/Height to review_card (36x36 avatar) and learn_more related events (140x100) - Add dynamic memCache sizing to tier_avatar_ring based on widget size Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
148 lines
4.2 KiB
Dart
148 lines
4.2 KiB
Dart
import 'package:cached_network_image/cached_network_image.dart';
|
|
import 'package:flutter/material.dart';
|
|
|
|
class DesktopTopBar extends StatelessWidget {
|
|
final String username;
|
|
final String? profileImage;
|
|
final VoidCallback? onSearchTap;
|
|
final VoidCallback? onNotificationTap;
|
|
final VoidCallback? onAvatarTap;
|
|
|
|
const DesktopTopBar({
|
|
Key? key,
|
|
required this.username,
|
|
this.profileImage,
|
|
this.onSearchTap,
|
|
this.onNotificationTap,
|
|
this.onAvatarTap,
|
|
}) : super(key: key);
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
final theme = Theme.of(context);
|
|
|
|
return Container(
|
|
height: 64,
|
|
padding: const EdgeInsets.symmetric(horizontal: 24),
|
|
decoration: BoxDecoration(
|
|
color: theme.scaffoldBackgroundColor,
|
|
border: Border(
|
|
bottom: BorderSide(
|
|
color: theme.dividerColor.withValues(alpha: 0.3),
|
|
),
|
|
),
|
|
),
|
|
child: Row(
|
|
children: [
|
|
// Left: search bar
|
|
Expanded(
|
|
child: ConstrainedBox(
|
|
constraints: const BoxConstraints(maxWidth: 400),
|
|
child: SizedBox(
|
|
height: 44,
|
|
child: TextField(
|
|
onTap: onSearchTap,
|
|
readOnly: onSearchTap != null,
|
|
decoration: InputDecoration(
|
|
filled: true,
|
|
fillColor: theme.colorScheme.surfaceContainerHighest
|
|
.withValues(alpha: 0.4),
|
|
prefixIcon: Icon(Icons.search, color: theme.hintColor),
|
|
hintText: 'Search',
|
|
hintStyle: theme.textTheme.bodyMedium
|
|
?.copyWith(color: theme.hintColor),
|
|
border: OutlineInputBorder(
|
|
borderRadius: BorderRadius.circular(12),
|
|
borderSide: BorderSide.none,
|
|
),
|
|
contentPadding: const EdgeInsets.symmetric(vertical: 0),
|
|
),
|
|
style: theme.textTheme.bodyLarge,
|
|
),
|
|
),
|
|
),
|
|
),
|
|
|
|
const SizedBox(width: 16),
|
|
|
|
// Right: notification bell + avatar
|
|
Stack(
|
|
children: [
|
|
IconButton(
|
|
onPressed: onNotificationTap,
|
|
icon: Icon(
|
|
Icons.notifications_none,
|
|
color: theme.iconTheme.color,
|
|
),
|
|
),
|
|
Positioned(
|
|
right: 6,
|
|
top: 6,
|
|
child: CircleAvatar(
|
|
radius: 8,
|
|
backgroundColor: Colors.red,
|
|
child: Text(
|
|
'2',
|
|
style: theme.textTheme.bodySmall?.copyWith(
|
|
color: Colors.white,
|
|
fontSize: 10,
|
|
),
|
|
),
|
|
),
|
|
),
|
|
],
|
|
),
|
|
const SizedBox(width: 8),
|
|
GestureDetector(
|
|
onTap: onAvatarTap,
|
|
child: _buildAvatar(),
|
|
),
|
|
],
|
|
),
|
|
);
|
|
}
|
|
|
|
Widget _buildAvatar() {
|
|
if (profileImage != null && profileImage!.trim().isNotEmpty) {
|
|
final url = profileImage!.trim();
|
|
if (url.startsWith('http')) {
|
|
return CircleAvatar(
|
|
radius: 20,
|
|
backgroundColor: Colors.grey.shade200,
|
|
backgroundImage: CachedNetworkImageProvider(
|
|
url,
|
|
maxWidth: 80,
|
|
maxHeight: 80,
|
|
),
|
|
onBackgroundImageError: (_, __) {},
|
|
);
|
|
}
|
|
}
|
|
|
|
final name = username.trim();
|
|
String initials = 'U';
|
|
if (name.isNotEmpty) {
|
|
if (name.contains('@')) {
|
|
initials = name[0].toUpperCase();
|
|
} else {
|
|
final parts = name.split(' ').where((p) => p.isNotEmpty).toList();
|
|
initials = parts.isEmpty
|
|
? 'U'
|
|
: parts.take(2).map((p) => p[0].toUpperCase()).join();
|
|
}
|
|
}
|
|
|
|
return CircleAvatar(
|
|
radius: 20,
|
|
backgroundColor: Colors.blue.shade600,
|
|
child: Text(
|
|
initials,
|
|
style: const TextStyle(
|
|
color: Colors.white,
|
|
fontWeight: FontWeight.bold,
|
|
),
|
|
),
|
|
);
|
|
}
|
|
}
|