proxybuy-flutter/lib/widgets/similar_business_card.dart

113 lines
3.5 KiB
Dart

import 'package:flutter/material.dart';
import 'package:flutter_svg/flutter_svg.dart';
import 'package:lba/gen/assets.gen.dart';
import 'package:lba/res/colors.dart';
class SimilarBusinessCard extends StatelessWidget {
final String imagePath;
final String name;
final String location;
final VoidCallback onTap;
const SimilarBusinessCard({
super.key,
required this.imagePath,
required this.name,
required this.location,
required this.onTap,
});
@override
Widget build(BuildContext context) {
return Container(
width: 220,
margin: const EdgeInsets.symmetric(horizontal: 8),
decoration: BoxDecoration(
boxShadow: [
BoxShadow(
color: AppColors.shadowColor,
offset: const Offset(0, 4),
blurRadius: 8,
spreadRadius: 1,
),
],
borderRadius: BorderRadius.circular(12),
color: AppColors.nearbyPopup,
border: Border.all(color: AppColors.surface, width: 4.0),
),
child: Column(
crossAxisAlignment: CrossAxisAlignment.start,
children: [
SizedBox(height: 15,),
Center(
child: ClipRRect(
borderRadius: const BorderRadius.all(Radius.circular(8)),
child: Image.asset(
imagePath,
height: 110,
width: 180,
fit: BoxFit.cover,
),
),
),
Padding(
padding: const EdgeInsets.all(12.0),
child: Column(
crossAxisAlignment: CrossAxisAlignment.start,
children: [
Text(
name,
style: TextStyle(
fontWeight: FontWeight.normal,
fontSize: 16,
color: AppColors.textPrimary,
),
maxLines: 1,
overflow: TextOverflow.ellipsis,
),
const SizedBox(height: 6),
Row(
children: [
SvgPicture.asset(
Assets.icons.location.path,
color: AppColors.textPrimary,
width: 16,
),
const SizedBox(width: 6),
Expanded(
child: Text(
location,
style: TextStyle(
fontSize: 14,
color: AppColors.textPrimary,
),
maxLines: 1,
overflow: TextOverflow.ellipsis,
),
),
],
),
const SizedBox(height: 16),
SizedBox(
width: 120,
child: ElevatedButton(
onPressed: onTap,
style: ElevatedButton.styleFrom(
backgroundColor: AppColors.primary,
foregroundColor: AppColors.surface,
shape: RoundedRectangleBorder(
borderRadius: BorderRadius.circular(8),
),
padding: const EdgeInsets.symmetric(horizontal: 10, vertical: 4),
),
child: const Text("See more about",style: TextStyle(fontWeight: FontWeight.bold),),
),
),
],
),
),
],
),
);
}
}