Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
对不起; 不再需要的问题
您需要使用 List、Group、VStack 等类型来包装您的内容。您的内容视图中不能有两个原始文本元素。使用组的示例:
var body: some View { Group { Text("1") Text("2") } }