Skip to content

Commit

Permalink
Remove logo and logo bar from the app.
Browse files Browse the repository at this point in the history
  • Loading branch information
pcraciunoiu committed May 8, 2024
1 parent 51627f6 commit e44e77f
Show file tree
Hide file tree
Showing 9 changed files with 0 additions and 45 deletions.
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

0 comments on commit e44e77f

Please sign in to comment.