update logos on SimpleX info page for dark mode (#880)

This commit is contained in:
Evgeny Poberezkin
2022-08-03 15:17:42 +01:00
committed by GitHub
parent 4c6ee95eb7
commit c74a4fcbca
11 changed files with 27 additions and 2 deletions
@@ -0,0 +1,23 @@
{
"images" : [
{
"filename" : "logo-light.png",
"idiom" : "universal",
"scale" : "1x"
},
{
"filename" : "logo-light@2x.png",
"idiom" : "universal",
"scale" : "2x"
},
{
"filename" : "logo-light@3x.png",
"idiom" : "universal",
"scale" : "3x"
}
],
"info" : {
"author" : "xcode",
"version" : 1
}
}
Binary file not shown.

After

Width:  |  Height:  |  Size: 10 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 22 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 23 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 19 KiB

After

Width:  |  Height:  |  Size: 12 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 23 KiB

After

Width:  |  Height:  |  Size: 24 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 44 KiB

After

Width:  |  Height:  |  Size: 17 KiB

@@ -10,13 +10,14 @@ import SwiftUI
struct SimpleXInfo: View {
@EnvironmentObject var m: ChatModel
@Environment(\.colorScheme) var colorScheme: ColorScheme
@State private var showHowItWorks = false
var onboarding: Bool
var body: some View {
GeometryReader { g in
VStack(alignment: .leading) {
Image("logo")
Image(colorScheme == .light ? "logo" : "logo-light")
.resizable()
.aspectRatio(contentMode: .fit)
.frame(width: g.size.width * 0.7)