Daily iOS
SwiftUI

Stack and Spacer layout

Select all the correct statements about the layout result of this SwiftUI view.

HStack {
    Text("Title")
    Spacer()
    Button("Save") {}
}
.frame(maxWidth: .infinity)
.background(Color.yellow)

Pick all that apply

Submit