-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
8c2bd34
commit 3d8f2db
Showing
9 changed files
with
46 additions
and
19 deletions.
There are no files selected for viewing
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
import os | ||
import OSLog | ||
import SwiftUI | ||
|
||
@main | ||
|
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
#if os(iOS) | ||
import Blocks | ||
import os | ||
import OSLog | ||
import SwiftUI | ||
|
||
class BackgroundRunnerSingleton { | ||
|
23 changes: 23 additions & 0 deletions
23
Examples/BlocksApp/BlocksApp/Features/FormPlaygroundView.swift
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
import Blocks | ||
import OSLog | ||
import SwiftUI | ||
|
||
struct FormPlaygroundView: View { | ||
private let logger = Logger(subsystem: "net.mickf.BlocksDemoApp", category: "FormPlayground") | ||
|
||
@State var text: String = "" | ||
|
||
var body: some View { | ||
Form { | ||
Section(header: Text("Section")) { | ||
TextField("Standard", text: $text) | ||
LabeledTextField("Title", text: $text, prompt: Text("Prompt")) | ||
} | ||
} | ||
.navigationTitle("Form Playground") | ||
} | ||
} | ||
|
||
#Preview { | ||
FormPlaygroundView() | ||
} |
1 change: 0 additions & 1 deletion
1
Examples/BlocksApp/BlocksApp/Features/LoggingPlaygroundView.swift
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,4 @@ | ||
import Blocks | ||
import os | ||
import OSLog | ||
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,4 @@ | ||
import Blocks | ||
import os | ||
import OSLog | ||
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
#if os(iOS) | ||
import Combine | ||
import os | ||
import OSLog | ||
import SwiftUI | ||
import WatchConnectivity | ||
|
||
|