app/lib/components/product_box.dart
2022-04-25 13:48:14 +07:00

73 lines
2.4 KiB
Dart

import 'package:cached_network_image/cached_network_image.dart';
import 'package:flutter/material.dart';
class ProductBox extends StatefulWidget {
const ProductBox({Key? key, required this.imageUrl, required this.title, required this.callback})
: super(key: key);
final String imageUrl;
final String title;
final Function() callback;
@override
State<ProductBox> createState() => _ProductBoxState();
}
class _ProductBoxState extends State<ProductBox> {
@override
Widget build(BuildContext context) {
return Container(
margin: const EdgeInsets.all(8.0),
child: Card(
color: const Color(0xff212226),
shape: RoundedRectangleBorder(
borderRadius: BorderRadius.circular(10),
),
child: InkWell(
onTap: () => widget.callback(),
borderRadius: BorderRadius.circular(10),
splashColor: const Color(0xff8B0000),
highlightColor: const Color(0xff8B0000),
child: Column(
children: [
Flexible(
flex: 4,
child: CachedNetworkImage(
imageUrl: widget.imageUrl,
placeholder: (context, url) =>
const CircularProgressIndicator(
color: Color(0xff8B0000),
),
errorWidget: (context, url, error) =>
Image.asset('assets/image-error.webp'),
fadeOutDuration: const Duration(milliseconds: 5),
imageBuilder: (context, imageProvider) => Container(
width: 300,
height: 150,
decoration: BoxDecoration(
image: DecorationImage(
image: imageProvider, fit: BoxFit.cover)),
),
),
),
Flexible(
flex: 1,
child: Container(
margin: const EdgeInsets.all(10),
child: Text(
widget.title,
style: const TextStyle(
fontSize: 14,
color: Colors.white,
fontWeight: FontWeight.w600),
textAlign: TextAlign.center,
),
),
)
],
),
),
),
);
}
}