import 'package:flutter/material.dart';
import 'package:mobile/utils/price.dart';

class ReceiptItemView extends StatelessWidget {
  final int pricePerAmount;
  final String name;
  final int amount;

  const ReceiptItemView(
      {super.key,
      required this.pricePerAmount,
      required this.name,
      required this.amount});

  @override
  Widget build(BuildContext context) {
    return Row(
      mainAxisAlignment: MainAxisAlignment.spaceBetween,
      children: [
        Text(name),
        Row(
          children: [
            SizedBox(
                width: 80,
                child: Text(
                  "$amount stk",
                  textAlign: TextAlign.end,
                  overflow: TextOverflow.ellipsis,
                )),
            SizedBox(
                width: 80,
                child: Text(
                  formatDkkCents(pricePerAmount * amount),
                  textAlign: TextAlign.end,
                  overflow: TextOverflow.ellipsis,
                ))
          ],
        ),
      ],
    );
  }
}