import 'package:flutter/material.dart'; import 'package:cashumit/extensions/double_extensions.dart'; class ReceiptTotal extends StatelessWidget { final double total; const ReceiptTotal({Key? key, required this.total}) : super(key: key); @override Widget build(BuildContext context) { return Container( width: double.infinity, padding: const EdgeInsets.all(8.0), color: Colors.white, child: Column( children: [ Row( mainAxisAlignment: MainAxisAlignment.spaceBetween, children: [ const Expanded( flex: 4, child: Text( 'TOTAL:', style: TextStyle( fontSize: 16, fontWeight: FontWeight.bold, ), ), ), Expanded( flex: 4, child: Text( total.toRupiah(), style: const TextStyle( fontSize: 16, fontWeight: FontWeight.bold, ), textAlign: TextAlign.right, ), ), ], ), ], ), ); } }