Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove logo and logo bar from the app. #58

Merged
merged 1 commit into from
May 17, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -27,11 +27,6 @@ struct MainView: View {
self.content
.navigationBarTitleDisplayMode(.inline)
.toolbar {

ToolbarItem(placement: .topBarLeading) {
Image(.header)
}

ToolbarItem(placement: .topBarTrailing) {

NavigationLink(destination: SettingsView(viewModel: .init(appState: viewModel.appState)),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,11 +21,6 @@ struct OnboardingFormView: View {

self.content
.navigationBarTitleDisplayMode(.inline)
.toolbar {
ToolbarItem(placement: .topBarLeading) {
Image(.header)
}
}
}

// MARK: - Views
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,11 +23,6 @@ struct OnboardingView: View {

self.content
.navigationBarTitleDisplayMode(.inline)
.toolbar {
ToolbarItem(placement: .topBarLeading) {
Image(.header)
}
}
}

// MARK: - Views
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,11 +22,6 @@ struct PolicyView: View {
self.content
}
.navigationBarTitleDisplayMode(.inline)
.toolbar {
ToolbarItem(placement: .topBarLeading) {
Image(.header)
}
}
.navigationBarBackButtonHidden(!viewModel.appState.hasCompletedOnboarding)
.customAlert(
title: "Review the terms & conditions",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,6 @@ struct AboutView: View {

self.content
.navigationBarTitleDisplayMode(.inline)
.toolbar {
ToolbarItem(placement: .topBarLeading) {
Image(.header)
}
}
}

// MARK: - Views
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,11 +29,6 @@ struct DataHandlingView: View {

self.content
.navigationBarTitleDisplayMode(.inline)
.toolbar {
ToolbarItem(placement: .topBarLeading) {
Image(.header)
}
}
}

// MARK: - Views
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,6 @@ struct SettingsView: View {

self.content
.navigationBarTitleDisplayMode(.inline)
.toolbar {
ToolbarItem(placement: .topBarLeading) {
Image(.header)
}
}
}

// MARK: - Views
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,11 +22,6 @@ struct StudySelectionView: View {
self.content
}
.navigationBarTitleDisplayMode(.inline)
.toolbar {
ToolbarItemGroup(placement: .topBarLeading) {
Image(.header)
}
}
.onAppear {
viewModel.load()
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,11 +28,6 @@ struct FormView: View {
} else {
self.content
.navigationBarTitleDisplayMode(.inline)
.toolbar {
ToolbarItem(placement: .topBarLeading) {
Image(.header)
}
}
}


Expand Down