fix(splash): 스플래시 화면을 변경한다
This commit is contained in:
@@ -1431,9 +1431,9 @@ enum I18n {
|
||||
enum Splash {
|
||||
static var tagline: String {
|
||||
pick(
|
||||
ko: "목소리로 만나는 새로운 세계",
|
||||
en: "A new world you meet by voice",
|
||||
ja: "声でつながる新しいワールド"
|
||||
ko: "당신의 최애가 기다리는 곳",
|
||||
en: "Meet Your Favorites",
|
||||
ja: "推しが待つ場所"
|
||||
)
|
||||
}
|
||||
|
||||
|
||||
@@ -17,10 +17,8 @@ struct SplashView: View {
|
||||
|
||||
var body: some View {
|
||||
ZStack(alignment: .top) {
|
||||
Image("splash_bg")
|
||||
.resizable()
|
||||
.scaledToFill()
|
||||
.edgesIgnoringSafeArea(.all)
|
||||
Color.black
|
||||
.ignoresSafeArea()
|
||||
|
||||
VStack(spacing: 0) {
|
||||
Spacer()
|
||||
@@ -32,12 +30,8 @@ struct SplashView: View {
|
||||
Image("splash_text_logo")
|
||||
.padding(.top, 10)
|
||||
|
||||
Text(I18n.Splash.brandName)
|
||||
.appFont(size: 21, weight: .bold)
|
||||
.foregroundColor(.white)
|
||||
.padding(.top, 52)
|
||||
Spacer()
|
||||
}
|
||||
.padding(.bottom, screenSize().height * 100 / 2337)
|
||||
|
||||
if isShowMaintenancePopup {
|
||||
SodaDialog(
|
||||
|
||||
Reference in New Issue
Block a user