Interesting SwiftUI glitch:

Here, popup hints will show on addButton and reportButton but not editButton. The problem is the Spacer; makes sense since there are other bugs related to it (such as having to put it in a different ToolbarItem). I suspect we're just not supposed to use Spacer like this.

Alternatives:
- Divider() works, but is way too subtle and the width can't be adjusted (here).
- Adding .padding(.trailing) to the leading button just isn't effective. #SwiftUI #TipKit #ToolbarItem

@tewha I’m not at a computer right now but have you tried ToolbarSpacer()?
@troz @tewha Came here to say this. 👍

@josh @troz I'll poke at it more later, but it seems ineffective in the bottom bar.

(That book cover button is the edit button. Either the icon or the name will change.)