{"$schema":"https://ui.shadcn.com/schema/registry-item.json","name":"list-swiftui","type":"registry:item","title":"List","description":"A SwiftUI scrolling container for structured rows, sections and platform-standard list interactions.","files":[{"path":"snippets/list-swiftui.tsx","content":"import { Host, List, Text, Section } from \"@expo/ui/swift-ui\";\n\nexport default function BasicListExample() {\n  return (\n    <Host style={{ flex: 1 }}>\n      <List>\n        <Section title=\"Fruits\">\n          <Text>Apple</Text>\n          <Text>Banana</Text>\n          <Text>Orange</Text>\n        </Section>\n        <Section title=\"Vegetables\">\n          <Text>Carrot</Text>\n          <Text>Broccoli</Text>\n          <Text>Spinach</Text>\n        </Section>\n      </List>\n    </Host>\n  );\n}\n","type":"registry:file","target":"~/snippets/list-swiftui.tsx"}],"author":"expo","dependencies":["@expo/ui"]}