view LazyBear/Helpers/AboutSection.swift @ 471:f6bb6fde1ff7 default tip

Move to mercurial
author Dennis C. M. <dennis@denniscm.com>
date Tue, 03 Jun 2025 15:05:50 +0100
parents 6953d83060a4
children
line wrap: on
line source

//
//  AboutSection.swift
//  lazybear
//
//  Created by Dennis Concepción Martín on 17/07/2021.
//

import SwiftUI

struct AboutSection: View {
    var companyInfo: CompanyInfoModel
    
    var body: some View {
        Text("About")
            .font(.title2)
            .fontWeight(.semibold)
        
        Text(companyInfo.description ?? "")
    }
}

struct AboutSection_Previews: PreviewProvider {
    static var previews: some View {
        AboutSection(companyInfo: CompanyInfoModel(symbol: "AAPL", companyName: "Apple Inc", description: "Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.", address: "One Apple Park Way", state: "CA", country: "US"))
    }
}