making some fixes little things especially for the updating of user and setting right id for document in users collection

This commit is contained in:
talksik
2021-12-18 18:13:23 -08:00
parent afe8cc4ad9
commit f0e6e7ca63
11 changed files with 65 additions and 6 deletions
@@ -19,14 +19,17 @@ struct SplashView: View {
.foregroundColor(Color.white)
.scaleEffect(self.scale)
.animation(.easeIn(duration: 2).repeatForever(autoreverses: true))
.ignoresSafeArea(.keyboard)
}
.ignoresSafeArea(.keyboard)
}
.frame(width: UIScreen.main.bounds.width, height: UIScreen.main.bounds.height)
.background(NirvanaColor.teal)
.onAppear {
self.scale = 1.3
}
.ignoresSafeArea(.all)
.ignoresSafeArea(.keyboard)
.edgesIgnoringSafeArea(.all)
}
}