chore(splash): 스플래시 화면을 정리한다

This commit is contained in:
Yu Sung
2026-08-25 14:15:58 +09:00
parent af811a95ad
commit c61a046b98
4 changed files with 5 additions and 27 deletions

View File

@@ -1,21 +0,0 @@
{
"images" : [
{
"idiom" : "universal",
"scale" : "1x"
},
{
"idiom" : "universal",
"scale" : "2x"
},
{
"filename" : "splash_bg.png",
"idiom" : "universal",
"scale" : "3x"
}
],
"info" : {
"author" : "xcode",
"version" : 1
}
}

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.1 MiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 12 KiB

After

Width:  |  Height:  |  Size: 12 KiB

View File

@@ -20,15 +20,14 @@ struct SplashView: View {
Color.black
.ignoresSafeArea()
VStack(spacing: 0) {
VStack(spacing: 8) {
Spacer()
Text(I18n.Splash.tagline)
.appFont(size: 23, weight: .bold)
.foregroundColor(.white)
Image("splash_text_logo")
.padding(.top, 10)
Text(I18n.Splash.tagline)
.appFont(.heading4)
.foregroundColor(.white)
Spacer()
}