42 lines
1023 B
Dart
42 lines
1023 B
Dart
import 'package:flutter/material.dart';
|
|
|
|
class EventImage extends StatelessWidget {
|
|
final String? imageUrl;
|
|
final double aspectRatio;
|
|
|
|
const EventImage({Key? key, this.imageUrl, this.aspectRatio = 16 / 9}) : super(key: key);
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return ClipRRect(
|
|
borderRadius: BorderRadius.circular(10.0),
|
|
child: AspectRatio(
|
|
aspectRatio: aspectRatio,
|
|
child: imageUrl != null && imageUrl!.isNotEmpty
|
|
? Image.network(
|
|
imageUrl!,
|
|
width: double.infinity,
|
|
fit: BoxFit.cover,
|
|
errorBuilder: (context, error, stackTrace) {
|
|
return _buildPlaceholderImage();
|
|
},
|
|
)
|
|
: _buildPlaceholderImage(),
|
|
),
|
|
);
|
|
}
|
|
|
|
Widget _buildPlaceholderImage() {
|
|
return Container(
|
|
color: Colors.grey[800],
|
|
child: Center(
|
|
child: Icon(
|
|
Icons.image_not_supported,
|
|
color: Colors.grey[400],
|
|
size: 50,
|
|
),
|
|
),
|
|
);
|
|
}
|
|
}
|