parent
208fc77b7f
commit
1bdb6fd917
|
@ -9,7 +9,7 @@
|
|||
"scale" : "2x"
|
||||
},
|
||||
{
|
||||
"filename" : "splash_christmas_bg.png",
|
||||
"filename" : "splash_bg_2024.jpg",
|
||||
"idiom" : "universal",
|
||||
"scale" : "3x"
|
||||
}
|
BIN
SodaLive/Resources/Assets.xcassets/splash/splash_bg_2024.imageset/splash_bg_2024.jpg
vendored
Normal file
BIN
SodaLive/Resources/Assets.xcassets/splash/splash_bg_2024.imageset/splash_bg_2024.jpg
vendored
Normal file
Binary file not shown.
After Width: | Height: | Size: 349 KiB |
Binary file not shown.
Before Width: | Height: | Size: 1.1 MiB |
|
@ -9,7 +9,7 @@
|
|||
"scale" : "2x"
|
||||
},
|
||||
{
|
||||
"filename" : "splash_logo_christmas.png",
|
||||
"filename" : "splash_logo_2024.png",
|
||||
"idiom" : "universal",
|
||||
"scale" : "3x"
|
||||
}
|
BIN
SodaLive/Resources/Assets.xcassets/splash/splash_logo_2024.imageset/splash_logo_2024.png
vendored
Normal file
BIN
SodaLive/Resources/Assets.xcassets/splash/splash_logo_2024.imageset/splash_logo_2024.png
vendored
Normal file
Binary file not shown.
After Width: | Height: | Size: 40 KiB |
Binary file not shown.
Before Width: | Height: | Size: 53 KiB |
21
SodaLive/Resources/Assets.xcassets/splash/splash_logo_dragon_2024.imageset/Contents.json
vendored
Normal file
21
SodaLive/Resources/Assets.xcassets/splash/splash_logo_dragon_2024.imageset/Contents.json
vendored
Normal file
|
@ -0,0 +1,21 @@
|
|||
{
|
||||
"images" : [
|
||||
{
|
||||
"idiom" : "universal",
|
||||
"scale" : "1x"
|
||||
},
|
||||
{
|
||||
"idiom" : "universal",
|
||||
"scale" : "2x"
|
||||
},
|
||||
{
|
||||
"filename" : "splash_logo_dragon_2024.png",
|
||||
"idiom" : "universal",
|
||||
"scale" : "3x"
|
||||
}
|
||||
],
|
||||
"info" : {
|
||||
"author" : "xcode",
|
||||
"version" : 1
|
||||
}
|
||||
}
|
Binary file not shown.
After Width: | Height: | Size: 82 KiB |
|
@ -17,13 +17,24 @@ struct SplashView: View {
|
|||
|
||||
var body: some View {
|
||||
ZStack(alignment: .top) {
|
||||
Image("splash_christmas_bg")
|
||||
Image("splash_bg_2024")
|
||||
.resizable()
|
||||
.aspectRatio(contentMode: .fill)
|
||||
.edgesIgnoringSafeArea(.all)
|
||||
|
||||
Image("splash_logo_christmas")
|
||||
.padding(.top, 188)
|
||||
VStack(spacing: 0) {
|
||||
Spacer()
|
||||
|
||||
Image("splash_logo_2024")
|
||||
|
||||
Image("splash_logo_dragon_2024")
|
||||
.padding(.leading, 25)
|
||||
.padding(.top, 50)
|
||||
.padding(.bottom, 45)
|
||||
|
||||
Image("vividnext_logo")
|
||||
.padding(.bottom, 45)
|
||||
}
|
||||
|
||||
if isShowUpdatePopup {
|
||||
SodaDialog(
|
||||
|
|
Loading…
Reference in New Issue