-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathInteractionPrompt.swift
42 lines (36 loc) · 1.18 KB
/
InteractionPrompt.swift
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
//
// InteractionPrompt.swift
// Ciphers
//
// Created by Arjun B on 15/04/23.
//
import SwiftUI
struct InteractionPrompt: View {
let title: String
let description: String
var body: some View {
VStack(alignment: .leading, spacing: 6) {
Text(title)
.font(.subheadline.weight(.semibold))
.foregroundColor(.accentColor)
HStack {
Image(systemName: "rectangle.and.hand.point.up.left.fill")
.symbolRenderingMode(.hierarchical)
.foregroundColor(.accentColor)
.font(.body.bold())
.accessibilityHidden(true)
Text(description)
}
}
.padding()
.frame(maxWidth: .infinity, alignment: .leading)
.background(Color.accentColor.opacity(0.075))
.cornerRadius(8)
}
}
struct InteractionPrompt_Previews: PreviewProvider {
static var previews: some View {
InteractionPrompt(title: "Decipher the Message", description: "Use the wheel in the interactive area to shift each letter in the message, until it makes sense.")
.padding(80)
}
}