Fixed refresh progress label truncating

This commit is contained in:
Phil Viso 2020-07-04 09:34:56 -05:00
parent 16e7b23425
commit 299f3d421e

View File

@ -24,19 +24,25 @@ struct SidebarToolbar: ViewModifier {
AppAssets.settingsImage
.font(.title3)
.foregroundColor(.accentColor)
Spacer()
}).help("Settings")
}
ToolbarItem(placement: .automatic, content: {
ToolbarItem {
Spacer()
}
ToolbarItem(placement: .automatic) {
RefreshProgressView()
})
}
ToolbarItem {
Spacer()
}
ToolbarItem(placement: .automatic, content: {
Button(action: {
viewModel.showActionSheet = true
}, label: {
Spacer()
AppAssets.addMenuImage
.font(.title3)
.foregroundColor(.accentColor)