Most of the examples you will find explaining how to create a #SwiftUI paging scrollView will say to use the new .paging behavior (or some older method)
This works fine if all your views are the same size. If you have different sized views you may become frustrated trying to make things work.
The trick is using .scrollTargetBehavior(.viewAligned)
This will center your disparate views on the screen in a nice paging manner. Good stuff.


