mirror of
https://github.com/Ranchero-Software/NetNewsWire
synced 2025-08-12 06:26:36 +00:00
Create rough app outline
This commit is contained in:
13
Multiplatform/Shared/Sidebar/SidebarModel.swift
Normal file
13
Multiplatform/Shared/Sidebar/SidebarModel.swift
Normal file
@@ -0,0 +1,13 @@
|
||||
//
|
||||
// SidebarModel.swift
|
||||
// NetNewsWire
|
||||
//
|
||||
// Created by Maurice Parker on 6/28/20.
|
||||
// Copyright © 2020 Ranchero Software. All rights reserved.
|
||||
//
|
||||
|
||||
import Foundation
|
||||
|
||||
class SidebarModel: ObservableObject {
|
||||
|
||||
}
|
||||
21
Multiplatform/Shared/Sidebar/SidebarView.swift
Normal file
21
Multiplatform/Shared/Sidebar/SidebarView.swift
Normal file
@@ -0,0 +1,21 @@
|
||||
//
|
||||
// SidebarView.swift
|
||||
// NetNewsWire
|
||||
//
|
||||
// Created by Maurice Parker on 6/28/20.
|
||||
// Copyright © 2020 Ranchero Software. All rights reserved.
|
||||
//
|
||||
|
||||
import SwiftUI
|
||||
|
||||
struct SidebarView: View {
|
||||
var body: some View {
|
||||
Text("Sidebar View")
|
||||
}
|
||||
}
|
||||
|
||||
struct SidebarView_Previews: PreviewProvider {
|
||||
static var previews: some View {
|
||||
SidebarView()
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user