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
// | |
// MCBrowserView.swift | |
// You can copy and modify this file and use it with free! | |
// | |
// Created by treastrain / Tanaka Ryoga on 2023/09/08. | |
// | |
import MultipeerConnectivity | |
import SwiftUI |
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
// swift-tools-version: 5.9 | |
import PackageDescription | |
let package = Package( | |
name: "Scipio-CwlCatchException", | |
platforms: [.iOS(.v15)], | |
dependencies: [ | |
.package(url: "https://github.com/Quick/Nimble", exact: "12.3.0"), | |
.package(url: "https://github.com/ashfurrow/Nimble-Snapshots", exact: "9.6.0"), |
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 ContentView: View { | |
@StateObject private var object = Object() | |
var body: some View { | |
List(object.numbers, id: \.self) { number in | |
Text("Content \(number)") | |
} | |
.refreshable { |
OlderNewer