We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8c42212 commit 8f51e8fCopy full SHA for 8f51e8f
InfiniLink/Core/Home/RenameView.swift
@@ -53,14 +53,16 @@ struct RenameView: View {
53
.padding()
54
.frame(maxWidth: .infinity, alignment: .center)
55
Divider()
56
- VStack {
57
- TextField("InfiniTime", text: $changedName)
58
- .padding()
59
- .background(Material.regular)
60
- .clipShape(Capsule())
61
- Spacer()
+ ScrollView {
+ VStack {
+ TextField("InfiniTime", text: $changedName)
+ .padding()
+ .background(Material.regular)
+ .clipShape(Capsule())
62
+ Spacer()
63
+ }
64
65
}
66
67
.navigationBarBackButtonHidden()
68
0 commit comments