We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0f9125d commit 7075d3cCopy full SHA for 7075d3c
1 file changed
Flipper/iOS/UI/FileManager/FileManagerEditor.swift
@@ -30,17 +30,13 @@ extension FileManagerView {
30
} else if isLoading {
31
ProgressView()
32
} else {
33
- Card {
34
- TextEditor(text: $current)
35
- .focused($textFieldFocus)
36
- .font(.system(size: 14, weight: .medium))
37
- .hideScrollBackground()
38
- .frame(maxWidth: .infinity, maxHeight: .infinity)
39
- .padding(4)
40
- }
41
- .padding(14)
+ TextEditor(text: $current)
+ .focused($textFieldFocus)
+ .font(.system(size: 14, weight: .medium))
+ .hideScrollBackground()
42
}
43
+ .padding(14)
44
.frame(maxWidth: .infinity, maxHeight: .infinity)
45
.background(Color.background)
46
.navigationBarBackground(Color.a1)
0 commit comments