Avatar
User profile images and placeholders.
Installation
bash
flutter_studio add avatarbash
flutter pub add flutter_studioUsage
dart
// Image avatar
CustomAvatar(
imageUrl: 'https://example.com/avatar.jpg',
size: 64,
)
// Initials avatar
CustomAvatar(
initials: 'JD',
size: 64,
)
// Icon avatar
CustomAvatar(
icon: Icons.person,
size: 64,
)API Reference
Properties
| Property | Type | Default | Description |
|---|---|---|---|
imageUrl | String? | null | Avatar image URL |
initials | String? | null | User initials |
size | double | 40 | Avatar size |
