commit dbebf4384a5315df7f6797da35338c264d75e8be parent 4e5c8ff83b2a54032563432bc545eaee92e5d3e3 Author: FIGBERT <figbert@figbert.com> Date: Thu, 15 Sep 2022 16:59:40 -0700 Add quote styles Diffstat:
M | Shared/CapsuleView.swift | | | 8 | +++++++- |
1 file changed, 7 insertions(+), 1 deletion(-)
diff --git a/Shared/CapsuleView.swift b/Shared/CapsuleView.swift @@ -62,7 +62,13 @@ struct CapsuleView: View { Text("ยท \(str)") case .Quote(let str): if !str.isEmpty { - Text("\"\(str)\"") + HStack { + Rectangle() + .foregroundColor(.blue.opacity(0.8)) + .frame(width: 2) + Text(str) + .font(.system(size: 16.5)) + } } case .EmptyLine: EmptyView()