add box selected product

This commit is contained in:
2026-02-07 23:09:06 +07:00
parent 9fbd9e846a
commit 28a376fc4d
5 changed files with 395 additions and 164 deletions

View File

@@ -188,7 +188,7 @@ class AddSalesScreenState extends ConsumerState<AddSalesScreen> {
),
body: SingleChildScrollView(
child: Padding(
padding: const EdgeInsets.all(20.0),
padding: const EdgeInsets.fromLTRB(20.0, 20.0, 20.0, 100.0),
child: Column(
children: [
///_______Invoice_And_Date_____________________________________________________

View File

@@ -222,4 +222,8 @@ class CartNotifier extends ChangeNotifier {
);
calculatePrice();
}
}
num getTotalAmount() {
return totalPayableAmount;
}
}