스플래시 변경

This commit is contained in:
Yu Sung
2024-10-12 01:02:53 +09:00
parent 9a461f14ad
commit a92e42b718
9 changed files with 31 additions and 10 deletions

View File

@@ -21,12 +21,14 @@ struct SplashView: View {
.scaledToFill()
.edgesIgnoringSafeArea(.all)
HStack(spacing: 0) {
VStack(spacing: 0) {
Image("splash_text1")
.padding(.top, screenSize().height * 360 / 2337)
Spacer()
Image("splash_text")
.padding(.top, 94)
.padding(.trailing, 38)
Image("splash_text2")
.padding(.bottom, screenSize().height * 240 / 2337)
}
if isShowUpdatePopup {
@@ -146,8 +148,6 @@ struct SplashView: View {
}
}
struct SplashView_Previews: PreviewProvider {
static var previews: some View {
SplashView()
}
#Preview {
SplashView()
}