You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
127 lines
4.6 KiB
Dart
127 lines
4.6 KiB
Dart
import 'package:diplomaticquarterapp/core/model/packages_offers/responses/PackagesCartItemsResponseModel.dart';
|
|
import 'package:diplomaticquarterapp/core/model/packages_offers/responses/PackagesResponseModel.dart';
|
|
import 'package:diplomaticquarterapp/core/viewModels/packages_offers/PackagesOffersViewModel.dart';
|
|
import 'package:diplomaticquarterapp/theme/colors.dart';
|
|
import 'package:diplomaticquarterapp/uitl/translations_delegate_base.dart';
|
|
import 'package:diplomaticquarterapp/uitl/utils.dart';
|
|
import 'package:diplomaticquarterapp/uitl/utils_new.dart';
|
|
import 'package:diplomaticquarterapp/widgets/CounterView.dart';
|
|
import 'package:flutter/cupertino.dart';
|
|
import 'package:flutter/material.dart';
|
|
import 'package:flutter_svg/flutter_svg.dart';
|
|
|
|
bool wide = true;
|
|
|
|
class PackagesCartItemCard extends StatefulWidget {
|
|
final PackagesCartItemsResponseModel itemModel;
|
|
final StepperCallbackFuture shouldStepperChangeApply;
|
|
final PackagesViewModel viewModel;
|
|
final Function? getCartItems;
|
|
|
|
const PackagesCartItemCard({required this.itemModel, required this.shouldStepperChangeApply, required this.viewModel, this.getCartItems, Key? key}) : super(key: key);
|
|
|
|
@override
|
|
State<StatefulWidget> createState() => PackagesCartItemCardState();
|
|
}
|
|
|
|
class PackagesCartItemCardState extends State<PackagesCartItemCard> {
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
wide = !wide;
|
|
return Container(
|
|
decoration: cardRadius(15.0),
|
|
height: 95,
|
|
padding: EdgeInsets.all(9),
|
|
child: Row(
|
|
mainAxisSize: MainAxisSize.max,
|
|
children: [
|
|
_image(widget.itemModel.product),
|
|
SizedBox(width: 7),
|
|
Expanded(
|
|
child: Column(
|
|
crossAxisAlignment: CrossAxisAlignment.start,
|
|
children: [
|
|
_itemName(widget.itemModel.product.getName()),
|
|
Expanded(child: _itemDescription(widget.itemModel.product.shortDescription!)),
|
|
Row(
|
|
mainAxisSize: MainAxisSize.max,
|
|
mainAxisAlignment: MainAxisAlignment.spaceBetween,
|
|
children: [
|
|
_itemPrice(widget.itemModel.product.price!, context: context),
|
|
InkWell(
|
|
onTap: () async {
|
|
await widget.viewModel.service.deleteProductFromCart(widget.itemModel.id, context: context, showLoading: false);
|
|
widget.getCartItems!();
|
|
},
|
|
child: Padding(
|
|
padding: const EdgeInsets.only(right: 3, bottom: 3),
|
|
child: Row(
|
|
mainAxisSize: MainAxisSize.min,
|
|
children: [
|
|
Text(
|
|
TranslationBase.of(context).removeMember,
|
|
style: TextStyle(
|
|
fontSize: 10,
|
|
color: CustomColors.accentColor,
|
|
fontWeight: FontWeight.w600,
|
|
letterSpacing: -0.36,
|
|
),
|
|
),
|
|
SizedBox(width: 2),
|
|
SvgPicture.asset("assets/images/new-design/delete.svg", color: CustomColors.accentColor),
|
|
],
|
|
),
|
|
),
|
|
),
|
|
],
|
|
),
|
|
],
|
|
),
|
|
)
|
|
],
|
|
),
|
|
);
|
|
}
|
|
}
|
|
|
|
Widget _image(PackagesResponseModel model) => AspectRatio(
|
|
aspectRatio: 1 / 1,
|
|
child: ClipRRect(
|
|
borderRadius: BorderRadius.circular(15), child: (model.images!.isNotEmpty) ? Utils.loadNetworkImage(url: model.images!.first.src!, fitting: BoxFit.fill) : Container(color: Colors.grey[200])),
|
|
);
|
|
|
|
Widget _itemName(String name) => Text(
|
|
name,
|
|
style: TextStyle(
|
|
fontSize: 14,
|
|
fontWeight: FontWeight.bold,
|
|
color: Color(0xff2B353E),
|
|
letterSpacing: -0.56,
|
|
),
|
|
);
|
|
|
|
Widget _itemDescription(String desc) => Text(
|
|
desc,
|
|
maxLines: 2,
|
|
overflow: TextOverflow.ellipsis,
|
|
style: TextStyle(
|
|
fontSize: 10,
|
|
fontWeight: FontWeight.w500,
|
|
color: Color(0xff535353),
|
|
letterSpacing: -0.4,
|
|
),
|
|
);
|
|
|
|
Widget _itemPrice(double price, {required BuildContext context}) {
|
|
final prc = (price ?? 0.0).toStringAsFixed(2);
|
|
return Text(
|
|
'$prc ${TranslationBase.of(context).sar}',
|
|
style: TextStyle(
|
|
fontSize: 11,
|
|
fontWeight: FontWeight.w600,
|
|
color: Color(0xff5D5D5D),
|
|
letterSpacing: -0.44,
|
|
),
|
|
);
|
|
}
|