PagerTabStripView/Example/Shared/Additional Example Source Code/Views/Twitter/TweetsModel.swift

18 lines
284 B
Swift

//
// TweetsModel.swift
// Example (iOS)
//
// Copyright © 2021 Xmartlabs SRL. All rights reserved.
//
import Foundation
class TweetsModel: ObservableObject {
var posts: [Post] {
PostsFactory.shared.posts
}
@Published var isLoading: Bool = false
}