Mercurial > public > lazybear
view LazyBear/UI/IexAttribution.swift @ 232:439e94a2200d
Implement PriceView
author | Dennis Concepción Martín <66180929+denniscm190@users.noreply.github.com> |
---|---|
date | Tue, 02 Mar 2021 18:45:55 +0000 |
parents | |
children |
line wrap: on
line source
// // IexAttribution.swift // LazyBear // // Created by Dennis Concepción Martín on 2/3/21. // import SwiftUI struct IexAttribution: View { var text: String var body: some View { Link(destination: URL(string: "https://iexcloud.io")!) { Text(text) .font(.caption) .opacity(0.6) } } } struct IexAttribution_Previews: PreviewProvider { static var previews: some View { IexAttribution(text: "IEX Cloud") } }