Fixed Article Toolbar item placement on iPad

This commit is contained in:
Maurice Parker 2020-07-09 09:57:39 -05:00
parent d16c1678f2
commit aa4d191d1d
1 changed files with 9 additions and 9 deletions

View File

@ -30,7 +30,7 @@ struct ArticleToolbarModifier: ViewModifier {
} }
} }
ToolbarItem { ToolbarItem(placement: .bottomBar) {
Button(action: { Button(action: {
}, label: { }, label: {
AppAssets.readOpenImage AppAssets.readOpenImage
@ -38,11 +38,11 @@ struct ArticleToolbarModifier: ViewModifier {
}).help("Mark as Unread") }).help("Mark as Unread")
} }
ToolbarItem { ToolbarItem(placement: .bottomBar) {
Spacer() Spacer()
} }
ToolbarItem { ToolbarItem(placement: .bottomBar) {
Button(action: { Button(action: {
}, label: { }, label: {
AppAssets.starOpenImage AppAssets.starOpenImage
@ -50,11 +50,11 @@ struct ArticleToolbarModifier: ViewModifier {
}).help("Mark as Starred") }).help("Mark as Starred")
} }
ToolbarItem { ToolbarItem(placement: .bottomBar) {
Spacer() Spacer()
} }
ToolbarItem { ToolbarItem(placement: .bottomBar) {
Button(action: { Button(action: {
}, label: { }, label: {
AppAssets.nextUnreadArticleImage AppAssets.nextUnreadArticleImage
@ -62,11 +62,11 @@ struct ArticleToolbarModifier: ViewModifier {
}).help("Next Unread") }).help("Next Unread")
} }
ToolbarItem { ToolbarItem(placement: .bottomBar) {
Spacer() Spacer()
} }
ToolbarItem { ToolbarItem(placement: .bottomBar) {
Button(action: { Button(action: {
}, label: { }, label: {
AppAssets.articleExtractorOff AppAssets.articleExtractorOff
@ -74,11 +74,11 @@ struct ArticleToolbarModifier: ViewModifier {
}).help("Reader View") }).help("Reader View")
} }
ToolbarItem { ToolbarItem(placement: .bottomBar) {
Spacer() Spacer()
} }
ToolbarItem { ToolbarItem(placement: .bottomBar) {
Button(action: { Button(action: {
}, label: { }, label: {
AppAssets.shareImage AppAssets.shareImage