Fix incorrect app icon asset

This commit is contained in:
Maurice Parker
2020-06-28 19:21:48 -05:00
parent f669411b55
commit 8d5441759f
4 changed files with 22 additions and 1 deletions

View File

@@ -139,7 +139,7 @@
"size" : "128x128"
},
{
"filename" : "icon_256x256@2x.png",
"filename" : "icon_128x128@2x.png",
"idiom" : "mac",
"scale" : "2x",
"size" : "128x128"

Binary file not shown.

After

Width:  |  Height:  |  Size: 60 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 184 KiB

View File

@@ -0,0 +1,21 @@
//
// SwiftUIView.swift
// NetNewsWire
//
// Created by Maurice Parker on 6/28/20.
// Copyright © 2020 Ranchero Software. All rights reserved.
//
import SwiftUI
struct SwiftUIView: View {
var body: some View {
Text(/*@START_MENU_TOKEN@*/"Hello, World!"/*@END_MENU_TOKEN@*/)
}
}
struct SwiftUIView_Previews: PreviewProvider {
static var previews: some View {
SwiftUIView()
}
}