This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import SwiftUI | |
struct BottomSheetDesign: View { | |
@State var showSheet: Bool? = nil | |
var body: some View { | |
Button(action: { showSheet = true }) { | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import Foundation | |
struct Exchange: Decodable, Hashable { | |
var BuyBitCloutFeeBasisPoints: Int? | |
var NanosSold: Int? | |
var SatoshisPerBitCloutExchangeRate: Int? | |
var USDCentsPerBitCloutExchangeRate: Int? | |
var USDCentsPerBitCloutReserveExchangeRate: Int? | |
var USDCentsPerBitcoinExchangeRate: Int? |