twostraws / Ignite

A static site generator for Swift developers.
MIT License
986 stars 34 forks source link

Any equivalent to an HStack? #6

Closed Mcrich23 closed 1 month ago

Mcrich23 commented 1 month ago

I am trying to put social links in a footer with the logo and handle aligned horizontally. Ideas?

twostraws commented 1 month ago

You should use Section, then place your items into there. See here: https://ignitesamples.hackingwithswift.com/grid-examples/

HStack is great in SwiftUI, but causes problems on the web because it won't wrap its elements – they always stay in one line, even on (say) on iPhone in portrait orientation.