Text changes and images

This commit is contained in:
Arnfried Griesert
2024-03-18 05:54:11 +01:00
parent 94b3e7025c
commit 8bd22611a8
8 changed files with 37 additions and 15 deletions
@@ -104,7 +104,7 @@ struct AuthenticationQRLoginStartScreen: View {
var stepsView: some View {
VStack(alignment: .leading, spacing: 12) {
ForEach(steps) { step in
HStack {
HStack(spacing: 15) {
Text(String(step.id))
.font(theme.fonts.caption2SB)
.foregroundColor(theme.colors.accent)
@@ -123,8 +123,9 @@ struct AuthenticationQRLoginStartScreen: View {
private let steps = [
QRLoginStartStep(id: 1, description: VectorL10n.authenticationQrLoginStartStep1),
QRLoginStartStep(id: 2, description: VectorL10n.authenticationQrLoginStartStep2),
QRLoginStartStep(id: 3, description: VectorL10n.authenticationQrLoginStartStep3),
QRLoginStartStep(id: 4, description: VectorL10n.authenticationQrLoginStartStep4)
QRLoginStartStep(id: 3, description: VectorL10n.authenticationQrLoginStartStep3)
// bwi: 5145 (show only the first three steps)
// QRLoginStartStep(id: 4, description: VectorL10n.authenticationQrLoginStartStep4)
]
/// Sends the `scanQR` view action.