feat: Add InvoiceLogs widget to display expense logs in the detail screen
This commit is contained in:
parent
4836dd994c
commit
10680272c3
@ -115,6 +115,8 @@ class _ExpenseDetailScreenState extends State<ExpenseDetailScreen> {
|
|||||||
children: [
|
children: [
|
||||||
_InvoiceHeader(expense: expense),
|
_InvoiceHeader(expense: expense),
|
||||||
const Divider(height: 30, thickness: 1.2),
|
const Divider(height: 30, thickness: 1.2),
|
||||||
|
InvoiceLogs(logs: expense.expenseLogs),
|
||||||
|
const Divider(height: 30, thickness: 1.2),
|
||||||
_InvoiceParties(expense: expense),
|
_InvoiceParties(expense: expense),
|
||||||
const Divider(height: 30, thickness: 1.2),
|
const Divider(height: 30, thickness: 1.2),
|
||||||
_InvoiceDetailsTable(expense: expense),
|
_InvoiceDetailsTable(expense: expense),
|
||||||
@ -128,7 +130,7 @@ class _ExpenseDetailScreenState extends State<ExpenseDetailScreen> {
|
|||||||
statusColor: statusColor,
|
statusColor: statusColor,
|
||||||
),
|
),
|
||||||
const Divider(height: 30, thickness: 1.2),
|
const Divider(height: 30, thickness: 1.2),
|
||||||
InvoiceLogs(logs: expense.expenseLogs),
|
|
||||||
],
|
],
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
|
Loading…
x
Reference in New Issue
Block a user