[iOS] Create public space #143

- Update after design review
This commit is contained in:
Gil Eluard
2021-12-09 09:04:21 +01:00
parent 939baf9321
commit 2a9ade5c39
16 changed files with 29 additions and 21 deletions
@@ -69,7 +69,7 @@ struct RoundedBorderTextField: View {
.frame(height: 30)
.modifier(ClearViewModifier(alignment: .center, text: $text))
}
.padding(EdgeInsets(top: 8, leading: 8, bottom: 8, trailing: 0))
.padding(EdgeInsets(top: 8, leading: 8, bottom: 8, trailing: text.isEmpty ? 8 : 0))
.overlay(RoundedRectangle(cornerRadius: 8)
.stroke(editing ? theme.colors.accent : (footerText != nil && isError ? theme.colors.alert : theme.colors.quinaryContent), lineWidth: editing || (footerText != nil && isError) ? 2 : 1))