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: Colors.black.withOpacity(0.15), offset: const Offset(0, 4), blurRadius: 8, spreadRadius: 1, ), ], borderRadius: BorderRadius.circular(12), color: LightAppColors.nearbyPopup, border: Border.all(color: Colors.white, 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: const TextStyle( fontWeight: FontWeight.normal, fontSize: 16, color: Colors.black, ), maxLines: 1, overflow: TextOverflow.ellipsis, ), const SizedBox(height: 6), Row( children: [ SvgPicture.asset( Assets.icons.location.path, color: Colors.black, width: 16, ), const SizedBox(width: 6), Expanded( child: Text( location, style: TextStyle( fontSize: 14, color: Colors.black, ), maxLines: 1, overflow: TextOverflow.ellipsis, ), ), ], ), const SizedBox(height: 16), SizedBox( width: 120, child: ElevatedButton( onPressed: onTap, style: ElevatedButton.styleFrom( backgroundColor: LightAppColors.primary, foregroundColor: Colors.white, 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),), ), ), ], ), ), ], ), ); } }