NetNewsWire/Multiplatform/iOS/Article/ArticleView.swift

27 lines
552 B
Swift
Raw Normal View History

2020-07-02 22:30:50 +02:00
//
// ArticleView.swift
// Multiplatform iOS
2020-07-02 22:30:50 +02:00
//
// Created by Maurice Parker on 7/6/20.
2020-07-02 22:30:50 +02:00
// Copyright © 2020 Ranchero Software. All rights reserved.
//
import SwiftUI
import Articles
2020-07-02 22:30:50 +02:00
2020-07-12 01:22:47 +02:00
struct ArticleView: UIViewControllerRepresentable {
var sceneModel: SceneModel
func makeUIViewController(context: Context) -> ArticleViewController {
let controller = ArticleViewController()
controller.sceneModel = sceneModel
return controller
}
func updateUIViewController(_ uiViewController: ArticleViewController, context: Context) {
}
2020-07-02 22:30:50 +02:00
}