Browse Source

Don't show post button if post is only whitespace

Changelog-Changed: Post button is not shown if the content is only whitespace
Signed-off-by: William Casarin <jb55@jb55.com>
profiles-everywhere
William Casarin 2 years ago
parent
commit
17f87d5438
  1. 10
      damus/Views/PostView.swift

10
damus/Views/PostView.swift

@ -38,6 +38,10 @@ struct PostView: View {
dismiss()
}
var is_post_empty: Bool {
return post.allSatisfy { $0.isWhitespace }
}
var body: some View {
VStack {
HStack {
@ -48,8 +52,10 @@ struct PostView: View {
Spacer()
Button("Post") {
self.send_post()
if !is_post_empty {
Button("Post") {
self.send_post()
}
}
}
.padding([.top, .bottom], 4)

Loading…
Cancel
Save