84 lines
2.5 KiB
Dart
84 lines
2.5 KiB
Dart
part of 'image.dart';
|
|
|
|
class ImagePlaceholder extends StatelessWidget {
|
|
const ImagePlaceholder({super.key});
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return Container(
|
|
width: double.infinity,
|
|
decoration: const BoxDecoration(
|
|
color: Color(0x4DD9D9D9), // Light gray with opacity
|
|
borderRadius: BorderRadius.only(
|
|
bottomLeft: Radius.circular(20),
|
|
bottomRight: Radius.circular(20),
|
|
),
|
|
),
|
|
child: Column(
|
|
mainAxisAlignment: MainAxisAlignment.center,
|
|
children: [
|
|
// Hand holding coffee illustration
|
|
Container(
|
|
width: 120,
|
|
height: 160,
|
|
decoration: BoxDecoration(
|
|
color: Colors.white,
|
|
borderRadius: BorderRadius.circular(60),
|
|
),
|
|
child: Stack(
|
|
children: [
|
|
// Hand
|
|
Positioned(
|
|
bottom: 20,
|
|
left: 30,
|
|
child: Container(
|
|
width: 60,
|
|
height: 80,
|
|
decoration: BoxDecoration(
|
|
color: const Color(0xFFFFDBB3),
|
|
borderRadius: BorderRadius.circular(30),
|
|
),
|
|
),
|
|
),
|
|
// Coffee cup
|
|
Positioned(
|
|
top: 30,
|
|
left: 25,
|
|
child: Container(
|
|
width: 70,
|
|
height: 90,
|
|
decoration: BoxDecoration(
|
|
color: const Color(0xFFF4E4BC),
|
|
borderRadius: BorderRadius.circular(10),
|
|
),
|
|
child: Column(
|
|
mainAxisAlignment: MainAxisAlignment.center,
|
|
children: [
|
|
// Fore logo
|
|
Assets.images.logo.image(
|
|
width: 40,
|
|
height: 40,
|
|
fit: BoxFit.contain,
|
|
),
|
|
const SizedBox(height: 8),
|
|
Text(
|
|
'Enaklo',
|
|
style: TextStyle(
|
|
color: AppColor.primary,
|
|
fontSize: 12,
|
|
fontWeight: FontWeight.bold,
|
|
),
|
|
),
|
|
],
|
|
),
|
|
),
|
|
),
|
|
],
|
|
),
|
|
),
|
|
],
|
|
),
|
|
);
|
|
}
|
|
}
|