File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed
Feature/SplashFeature/Sources Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ import SwiftUI
4
4
struct GPleApp : App {
5
5
var body : some Scene {
6
6
WindowGroup {
7
- MainView ( postViewModel : PostViewModel ( ) )
7
+ SplashView ( )
8
8
}
9
9
}
10
10
}
Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ struct SplashView: View {
7
7
ZStack {
8
8
if isActive {
9
9
MainView ( viewModel: MainViewModel ( ) , postViewModel: PostViewModel ( ) )
10
- . transition ( . opacity) // 페이드 효과
10
+ . transition ( . opacity)
11
11
} else {
12
12
ZStack {
13
13
GPleAsset . Color. back. swiftUIColor
@@ -17,6 +17,7 @@ struct SplashView: View {
17
17
GPleAsset . Assets. gpleBigLogo. swiftUIImage
18
18
. resizable ( )
19
19
. frame ( width: 160 , height: 70 )
20
+ . padding ( . bottom, 40 )
20
21
}
21
22
}
22
23
. transition ( . opacity)
You can’t perform that action at this time.
0 commit comments