Fixed Article Toolbar item placement on iPad
This commit is contained in:
parent
d16c1678f2
commit
aa4d191d1d
|
@ -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
|
||||||
|
|
Loading…
Reference in New Issue