Card
How to use the Card component from the Apfel kit.
import { Canvas } from "@react-three/fiber"; import { Fullscreen } from "@react-three/uikit"; import { Defaults } from "@react-three/uikit-apfel"; import { Text } from '@react-three/uikit' import { Card } from "@react-three/uikit-apfel" function TextOnCard() { return ( <Card borderRadius={32} padding={32} gap={8} flexDirection="column"> <Text fontSize={32}>Hello World!</Text> <Text fontSize={24} opacity={0.7}> This is the apfel kit. </Text> </Card> ) } export default function App() { return ( <Canvas style={{ position: "absolute", inset: "0", touchAction: "none" }} gl={{ localClippingEnabled: true }}> <ambientLight intensity={0.5} /> <directionalLight intensity={1} position={[-5, 5, 10]} /> <Defaults> <Fullscreen overflow="scroll" scrollbarColor="black" backgroundColor="white" dark={{ backgroundColor: "black" }} flexDirection="column" gap={32} paddingX={32} alignItems="center" padding={32} > <TextOnCard /> </Fullscreen> </Defaults> </Canvas> ) }
npx uikit component add apfel card