How to install dependencies and structure your React Native app.
Run init with --yes to install dependencies and write Metro, Babel, Tailwind, and theme files.
npx ghost-ui-native init --yesglobal.css and tailwind.config.js.withNativeWind and Babel with nativewind/babel../global.css once at the app entry.SafeAreaProvider and GhostUIProvider.--reset-cache.import './global.css';
import { SafeAreaProvider } from 'react-native-safe-area-context';
import { GhostUIProvider } from '@/components/ghost-ui-provider';
export default function App() {
return (
<SafeAreaProvider>
<GhostUIProvider defaultTheme="system">
<YourApp />
</GhostUIProvider>
</SafeAreaProvider>
);
}npx ghost-ui-native add button card inputnpx ghost-ui-native add --all --yesnpx ghost-ui-native doctor