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:
39
Multiplatform/Shared/SceneNavigationView.swift
Normal file
39
Multiplatform/Shared/SceneNavigationView.swift
Normal file
@@ -0,0 +1,39 @@
|
||||
//
|
||||
// SceneNavigationView.swift
|
||||
// NetNewsWire
|
||||
//
|
||||
// Created by Maurice Parker on 6/28/20.
|
||||
// Copyright © 2020 Ranchero Software. All rights reserved.
|
||||
//
|
||||
|
||||
import SwiftUI
|
||||
|
||||
struct SceneNavigationView: View {
|
||||
var body: some View {
|
||||
NavigationView {
|
||||
#if os(macOS)
|
||||
SidebarView().frame(minWidth: 100, idealWidth: 150, maxWidth: 200, maxHeight: .infinity)
|
||||
#else
|
||||
SidebarView()
|
||||
#endif
|
||||
|
||||
Text("Timeline")
|
||||
.frame(maxWidth: .infinity, maxHeight: .infinity)
|
||||
|
||||
#if os(macOS)
|
||||
Text("None Selected")
|
||||
.frame(maxWidth: .infinity, maxHeight: .infinity)
|
||||
.toolbar { Spacer() }
|
||||
#else
|
||||
Text("None Selected")
|
||||
.frame(maxWidth: .infinity, maxHeight: .infinity)
|
||||
#endif
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
struct NavigationView_Previews: PreviewProvider {
|
||||
static var previews: some View {
|
||||
SceneNavigationView()
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user