Begin work on porting the add feed/folder dialog to SwiftUI

This commit is contained in:
Maurice Parker
2019-06-17 09:03:21 -05:00
parent fb29d006aa
commit c966d3c7ed
7 changed files with 40 additions and 5 deletions

23
iOS/Add/AddView.swift Normal file
View File

@@ -0,0 +1,23 @@
//
// AddView.swift
// NetNewsWire-iOS
//
// Created by Maurice Parker on 6/17/19.
// Copyright © 2019 Ranchero Software. All rights reserved.
//
import SwiftUI
struct AddView : View {
var body: some View {
Text(/*@START_MENU_TOKEN@*/"Hello World!"/*@END_MENU_TOKEN@*/)
}
}
#if DEBUG
struct AddView_Previews : PreviewProvider {
static var previews: some View {
AddView()
}
}
#endif