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 SwiftUI | |
struct ContentViewWatch: View { | |
@State var selection = 0 | |
var body: some View { | |
VStack { | |
Picker("Haptic Type", selection: $selection) { | |
Text("notification").tag(0) |
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 SwiftUI | |
struct Blender: Identifiable { | |
let id = UUID() | |
let mode: BlendMode | |
let name: String | |
} | |
struct BlendModes: View { |
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 SwiftUI | |
import CoreMotion | |
struct CardView: View { | |
@StateObject var motion = MotionManager() | |
var body: some View { | |
ZStack { | |
Color.white |
NewerOlder