SwiftUI Docs
老年人备忘录Fast, readable references
布局Layout

HStackHStack

水平方向排列视图,适合工具栏、标签行和操作区。Arranges views horizontally for toolbars, label rows, and action areas.

入门Beginner3 分钟3 min
更新于Updated Apr 22, 2026

水平排列Horizontal Arrangement

HStack 常用于左右并排信息和横向操作集合。HStack is useful for side-by-side information and horizontal action groups.

工具栏行Toolbar Row
swift
1HStack(spacing: 12) {
2 Image(systemName: "star.fill")
3 Text("Featured")
4 Spacer()
5 Button("Open") {}
6}
Featured
常见搭配Common Modifiers
SpaceralignmentGuideframe(maxWidth:)layoutPriority