update accessibility ids

pull/891/head
Ryan ZHAO 2 years ago
parent ae4c87a5b0
commit 431c024354

@ -112,6 +112,11 @@ struct LandingScreen: View {
AttributedText(attributedText)
.foregroundColor(themeColor: .textPrimary)
}
.accessibility(
Accessibility(
identifier: "Open URL"
)
)
.padding(.horizontal, Values.massiveSpacing)
}
}

@ -163,10 +163,7 @@ struct EnterRecoveryPasswordScreen: View{
$recoveryPassword,
placeholder: "recoveryPasswordEnter".localized(),
error: $error,
accessibility: Accessibility(
identifier: "Recovery password input",
label: "Recovery password input"
)
accessibility: Accessibility(identifier: "Recovery password input")
)
Spacer(minLength: 0)

@ -243,6 +243,7 @@ struct PNOptionView: View {
)
}
}
.accessibility(info.accessibility)
}
.frame(
maxWidth: .infinity

Loading…
Cancel
Save