2020-08-21 04:29:01 +02:00
|
|
|
// Copyright © 2020 Metabolist. All rights reserved.
|
|
|
|
|
|
|
|
import SwiftUI
|
2020-09-01 09:33:49 +02:00
|
|
|
import ViewModels
|
2020-08-21 04:29:01 +02:00
|
|
|
|
|
|
|
struct StatusListView: UIViewControllerRepresentable {
|
2020-08-26 23:20:44 +02:00
|
|
|
let viewModel: StatusListViewModel
|
2020-08-21 04:29:01 +02:00
|
|
|
|
|
|
|
func makeUIViewController(context: Context) -> StatusListViewController {
|
|
|
|
StatusListViewController(viewModel: viewModel)
|
|
|
|
}
|
|
|
|
|
|
|
|
func updateUIViewController(_ uiViewController: StatusListViewController, context: Context) {
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
2020-08-27 00:36:11 +02:00
|
|
|
|
|
|
|
#if DEBUG
|
2020-09-01 09:33:49 +02:00
|
|
|
import PreviewViewModels
|
|
|
|
|
2020-08-27 00:36:11 +02:00
|
|
|
struct StatusListView_Previews: PreviewProvider {
|
|
|
|
static var previews: some View {
|
2020-09-10 01:00:10 +02:00
|
|
|
StatusListView(viewModel: NavigationViewModel(identification: .preview).viewModel(timeline: .home))
|
2020-08-27 00:36:11 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|