Skip to content

Commit

Permalink
Fix launch screen
Browse files Browse the repository at this point in the history
  • Loading branch information
ren-suke committed Aug 26, 2024
1 parent 075b100 commit 699bd5a
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@
"color-space" : "srgb",
"components" : {
"alpha" : "1.000",
"blue" : "0x76",
"green" : "0x2D",
"red" : "0xFD"
"blue" : "0x00",
"green" : "0x00",
"red" : "0x00"
}
},
"idiom" : "universal"
Expand Down
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"images" : [
{
"filename" : "Logo.pdf",
"filename" : "Subtract.pdf",
"idiom" : "universal"
}
],
Expand Down
Binary file not shown.
2 changes: 1 addition & 1 deletion Packages/PicMatch/Sources/LaunchFeature/Launch.swift
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ public struct LaunchView: View {
.aspectRatio(contentMode: .fit)
.frame(maxWidth: .infinity, maxHeight: .infinity)
.ignoresSafeArea()
.background(Color(0xFFFF_0000))
.background(Color(0x0000_0000))
.task { await store.send(.onTask).finish() }
.overlay {
if viewStore.isActivityIndicatorVisible {
Expand Down

0 comments on commit 699bd5a

Please sign in to comment.