forked from LoopKit/LoopKit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTextFieldRow.swift
More file actions
55 lines (47 loc) · 1.36 KB
/
TextFieldRow.swift
File metadata and controls
55 lines (47 loc) · 1.36 KB
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
43
44
45
46
47
48
49
50
51
52
53
54
55
//
// TextFieldRow.swift
// LoopKitUI
//
// Created by Noah Brauner on 7/31/23.
// Copyright © 2023 LoopKit Authors. All rights reserved.
//
import SwiftUI
public struct TextFieldRow: View {
@Binding private var text: String
@Binding private var isFocused: Bool
let title: String
let placeholder: String
public init(text: Binding<String>, isFocused: Binding<Bool>, title: String, placeholder: String) {
self._text = text
self._isFocused = isFocused
self.title = title
self.placeholder = placeholder
}
public var body: some View {
HStack {
Text(title)
.foregroundColor(.primary)
Spacer()
RowTextField(text: $text, isFocused: $isFocused) {
$0.textAlignment = .right
$0.placeholder = placeholder
$0.font = .preferredFont(forTextStyle: .body)
}
.onTapGesture {
// so that row does not lose focus on cursor move
if !isFocused {
rowTapped()
}
}
}
.accessibilityElement(children: .combine)
.onTapGesture {
rowTapped()
}
}
private func rowTapped() {
withAnimation {
isFocused.toggle()
}
}
}