diff --git a/nirvana-ios/Views/SplashView/SplashView.swift b/nirvana-ios/Views/SplashView/SplashView.swift index a730f75..e323412 100644 --- a/nirvana-ios/Views/SplashView/SplashView.swift +++ b/nirvana-ios/Views/SplashView/SplashView.swift @@ -17,18 +17,10 @@ struct SplashView: View { .resizable() .frame(width: 50, height: 75) .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(.keyboard) .edgesIgnoringSafeArea(.all) } }