This file contains 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
// | |
// StringGenerics.swift | |
// | |
// Created by Darren Hurst on 2023-01-26. | |
// | |
import Foundation | |
extension String { |
This file contains 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
// | |
// login.swift.swift | |
// RTSPStreamer | |
// | |
// Created by Darren Hurst on 2023-01-20. | |
// | |
import Foundation | |
import SwiftUI |
This file contains 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
// | |
// Page returns a standard page with a color and conserves .light and .dark | |
// colorScheme | |
// | |
// | |
// | |
import Foundation | |
import SwiftUI |
This file contains 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
// | |
// Created by Darren Hurst on 2023-02-03. | |
// | |
import Foundation | |
import SwiftUI | |
struct Storefront: View { | |
@ObservedObject var view = ViewModel() |
This file contains 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
// | |
// CartView.swift | |
// RTSPStreamer | |
// | |
// Created by Darren Hurst on 2023-02-05. | |
// | |
import Foundation | |
import SwiftUI |
This file contains 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
// | |
// CartView.swift | |
// RTSPStreamer | |
// | |
// Created by Darren Hurst on 2023-02-05. | |
// | |
import Foundation | |
import SwiftUI |
This file contains 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
// | |
// CartView.swift | |
// RTSPStreamer | |
// | |
// Created by Darren Hurst on 2023-02-05. | |
// | |
import Foundation | |
import SwiftUI |
This file contains 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
// | |
// FlightCenter.swift | |
// RTSPStreamer | |
// | |
// Created by Darren Hurst on 2023-02-07. | |
// | |
import Foundation | |
import SwiftUI | |
import CoreLocation |
This file contains 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 UIKit | |
struct Item: Equatable { | |
var name: String? | |
var price: Double? | |
} | |
class a : ObservableObject { | |
@Published var items: [Item] = [ | |
Item(name: "hotdogs", price:3.99), |