Feature/3616 privacy on login

This commit is contained in:
Frank Rotermund
2022-12-04 10:47:42 +00:00
parent 3ea3cfd4cf
commit b23657a4a1
16 changed files with 261 additions and 63 deletions
@@ -58,8 +58,12 @@ struct AuthenticationServerSelectionScreen: View {
/// The title, message and icon at the top of the screen.
var header: some View {
VStack(spacing: 8) {
OnboardingIconImage(image: Asset.Images.welcomeExperience1)
.padding(.bottom, 8)
if BWIBuildSettings.shared.bumLoginFlowLayout {
ServerIcon(image: Asset.Images.welcomeExperience1, size: OnboardingMetrics.iconSize)
} else {
OnboardingIconImage(image: Asset.Images.welcomeExperience1)
.padding(.bottom, 8)
}
Text(viewModel.viewState.headerTitle)
.font(theme.fonts.title2B)