Skip to content

Commit

Permalink
[#5] Fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
blyscuit committed Sep 27, 2022
1 parent 741f180 commit 6cc1b76
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 6 deletions.
2 changes: 2 additions & 0 deletions iosApp/Survey.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@
09AB658028E18BBB00FF999D /* ViewId+Splash.swift in Sources */ = {isa = PBXBuildFile; fileRef = 09AB657F28E18BBB00FF999D /* ViewId+Splash.swift */; };
09CE770C28E191B400EAA9EE /* AppCoordinator.swift in Sources */ = {isa = PBXBuildFile; fileRef = 09CE770B28E191B400EAA9EE /* AppCoordinator.swift */; };
09CE770F28E1922000EAA9EE /* Screen.swift in Sources */ = {isa = PBXBuildFile; fileRef = 09CE770E28E1922000EAA9EE /* Screen.swift */; };
09CE772128E2956000EAA9EE /* ViewId+Splash.swift in Sources */ = {isa = PBXBuildFile; fileRef = 09AB657F28E18BBB00FF999D /* ViewId+Splash.swift */; };
3D0ADA9FBBF8D55D5F00610F /* OptionalUnwrapSpec.swift in Sources */ = {isa = PBXBuildFile; fileRef = D1EE1175F99D55A95E0995E9 /* OptionalUnwrapSpec.swift */; };
5BBBFAF49689F25A8C1D57AB /* AutoMockable.generated.swift in Sources */ = {isa = PBXBuildFile; fileRef = A88CA60577ABA5F7885E1DE7 /* AutoMockable.generated.swift */; };
686B2C185816765B3E124776 /* IOSApp.swift in Sources */ = {isa = PBXBuildFile; fileRef = 46885A08B19F8EB7FFC5117F /* IOSApp.swift */; };
Expand Down Expand Up @@ -1119,6 +1120,7 @@
09636B2428D821FC00A5CB97 /* LoginSpec.swift in Sources */,
09636B3228D8272200A5CB97 /* ScreenProtocol.swift in Sources */,
09636B2128D821EA00A5CB97 /* ViewId.swift in Sources */,
09CE772128E2956000EAA9EE /* ViewId+Splash.swift in Sources */,
09636B3628D8285700A5CB97 /* KeyboardScreen.swift in Sources */,
09636B2228D821ED00A5CB97 /* ViewId+Login.swift in Sources */,
09636B3128D8271D00A5CB97 /* LoginScreen.swift in Sources */,
Expand Down
16 changes: 10 additions & 6 deletions iosApp/Survey/Sources/Presentation/Modules/Splash/SplashView.swift
Original file line number Diff line number Diff line change
Expand Up @@ -19,16 +19,20 @@ struct SplashView: View {

var body: some View {
ZStack {
ZStack {}
.frame(maxWidth: .infinity, maxHeight: .infinity)
.background(Assets.background.image.resizable().aspectRatio(contentMode: .fill))
Assets.background
.image
.resizable()
.aspectRatio(contentMode: .fill)
.ignoresSafeArea()
.frame(maxWidth: .infinity, maxHeight: .infinity)

if animating {
ZStack {}
.frame(maxWidth: .infinity, maxHeight: .infinity)
.background(Assets.backgroundBlur.image.resizable().aspectRatio(contentMode: .fill))
Assets.backgroundBlur
.image
.resizable()
.aspectRatio(contentMode: .fill)
.ignoresSafeArea()
.frame(maxWidth: .infinity, maxHeight: .infinity)
}

VStack(
Expand Down

0 comments on commit 6cc1b76

Please sign in to comment.