mirror of
https://github.com/writeas/writefreely-swiftui-multiplatform.git
synced 2024-11-15 01:11:02 +00:00
Swap order of share and publish buttons in toolbar
This commit is contained in:
parent
68fd0c91e7
commit
43088fdc44
@ -8,10 +8,10 @@ struct ActivePostToolbarView: View {
|
|||||||
HStack(spacing: 16) {
|
HStack(spacing: 16) {
|
||||||
PostEditorStatusToolbarView(post: activePost)
|
PostEditorStatusToolbarView(post: activePost)
|
||||||
HStack(spacing: 4) {
|
HStack(spacing: 4) {
|
||||||
Button(action: { publishPost(activePost) }, label: { Image(systemName: "paperplane") })
|
|
||||||
.disabled(activePost.body.isEmpty || activePost.status == PostStatus.published.rawValue)
|
|
||||||
Button(action: {}, label: { Image(systemName: "square.and.arrow.up") })
|
Button(action: {}, label: { Image(systemName: "square.and.arrow.up") })
|
||||||
.disabled(activePost.status == PostStatus.local.rawValue)
|
.disabled(activePost.status == PostStatus.local.rawValue)
|
||||||
|
Button(action: { publishPost(activePost) }, label: { Image(systemName: "paperplane") })
|
||||||
|
.disabled(activePost.body.isEmpty || activePost.status == PostStatus.published.rawValue)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user