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