Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
folium-app
GitHub Repository: folium-app/Folium
Path: blob/a-new-beginning/Folium-iOS/Structures/Information.swift
2 views
//
//  Information.swift
//  Folium-iOS
//
//  Created by Jarrod Norwell on 22/11/2025.
//

import Foundation
import UIKit

struct Information {
    struct CoreElement {
        var image: UIImage? = nil
        var text, secondaryText: String
        var url: String
        
        var handler: UIActionHandler = { _ in }
    }
    
    typealias PortElement = CoreElement
    
    struct FeatureElement {
        var image: UIImage? = nil
        var text: String
    }
    
    struct FormatElement {
        var text: String
    }
    
    var menu: UIMenu
}