commit b19bc27ead4bba9ce8a7a60bb76478a7e17ab6c8
parent 754b47d693dc92d5f207e4577e81fe3657db07a9
Author: William Casarin <jb55@jb55.com>
Date: Wed, 28 Dec 2022 14:40:06 -0800
Adjust invoice height
Diffstat:
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/damus/Components/InvoicesView.swift b/damus/Components/InvoicesView.swift
@@ -23,7 +23,7 @@ struct InvoicesView: View {
.id(invoice.string)
}
}
- .frame(height: 200)
+ .frame(height: 240)
.tabViewStyle(PageTabViewStyle())
}
}
@@ -31,5 +31,6 @@ struct InvoicesView: View {
struct InvoicesView_Previews: PreviewProvider {
static var previews: some View {
InvoicesView(invoices: [Invoice.init(description: "description", amount: 10000, string: "invstr", expiry: 100000, payment_hash: Data(), created_at: 1000000)])
+ .frame(width: 300)
}
}