remove navigation view wrapper

pull/891/head
ryanzhao 2 years ago
parent 6741575f04
commit 42bfb63c19

@ -18,7 +18,6 @@ struct DisplayNameView: View {
}
var body: some View {
NavigationView {
ZStack(alignment: .center) {
if #available(iOS 14.0, *) {
ThemeManager.currentTheme.colorSwiftUI(for: .backgroundPrimary).ignoresSafeArea()
@ -89,7 +88,6 @@ struct DisplayNameView: View {
.padding(.vertical, Values.mediumSpacing)
}
}
}
private func register() {
let displayName = self.displayName.trimmingCharacters(in: CharacterSet.whitespacesAndNewlines)

@ -12,7 +12,6 @@ struct LandingView: View {
@State var numberOfBubblesShown: Int = 0
var body: some View {
NavigationView {
ZStack(alignment: .center) {
if #available(iOS 14.0, *) {
ThemeManager.currentTheme.colorSwiftUI(for: .backgroundPrimary).ignoresSafeArea()
@ -124,7 +123,6 @@ struct LandingView: View {
}
}
}
}
private func register() {
let seed: Data! = try! Randomness.generateRandomBytes(numberBytes: 16)

@ -15,7 +15,6 @@ struct LoadAccountView: View {
@State private var errorString: String? = nil
var body: some View {
NavigationView {
ZStack(alignment: .topLeading) {
if #available(iOS 14.0, *) {
ThemeManager.currentTheme.colorSwiftUI(for: .backgroundPrimary).ignoresSafeArea()
@ -45,7 +44,6 @@ struct LoadAccountView: View {
}
}
}
}
private func continueWithSeed(seed: Data) {
if (seed.count != 16) {

@ -20,7 +20,6 @@ struct LoadingView: View {
}
var body: some View {
NavigationView {
ZStack(alignment: .center) {
if #available(iOS 14.0, *) {
ThemeManager.currentTheme.colorSwiftUI(for: .backgroundPrimary).ignoresSafeArea()
@ -57,7 +56,6 @@ struct LoadingView: View {
.padding(.bottom, Values.massiveSpacing + Values.largeButtonHeight)
}
}
}
private func progress() {
animationTimer = Timer.scheduledTimerOnMainThread(

@ -39,7 +39,6 @@ struct PNModeView: View {
]
var body: some View {
NavigationView {
ZStack(alignment: .center) {
if #available(iOS 14.0, *) {
ThemeManager.currentTheme.colorSwiftUI(for: .backgroundPrimary).ignoresSafeArea()
@ -104,7 +103,6 @@ struct PNModeView: View {
.padding(.vertical, Values.mediumSpacing)
}
}
}
private func register() {
UserDefaults.standard[.isUsingFullAPNs] = (currentSelection == .fast)

@ -25,7 +25,6 @@ struct RecoveryPasswordView: View {
}
var body: some View {
NavigationView {
ZStack(alignment: .center) {
if #available(iOS 14.0, *) {
ThemeManager.currentTheme.colorSwiftUI(for: .backgroundPrimary).ignoresSafeArea()
@ -120,7 +119,6 @@ struct RecoveryPasswordView: View {
.padding(.vertical, Values.mediumSpacing)
}
}
}
private func copyRecoveryPassword() {
UIPasteboard.general.string = self.mnemonic

Loading…
Cancel
Save