feat(mobile): overhaul mobile app with Pro paywall, rewarded video refill, iOS permissions, and build APK
Some checks failed
deploy-site-windows / deploy-win (push) Successful in 48s
deploy-site / deploy (push) Failing after 24s

This commit is contained in:
Yun Chan 2026-08-20 21:49:05 +09:00
parent e87567fa90
commit 7e264dca37
8 changed files with 535 additions and 27 deletions

View file

@ -9,6 +9,7 @@ import { d3roNativePalette } from '@d3ro/ui-native'
import { AuthProvider } from './src/lib/auth-context'
import TabNavigator from './src/navigation/TabNavigator'
import LoginScreen from './src/screens/LoginScreen'
import ProPaywallScreen from './src/screens/ProPaywallScreen'
const Stack = createNativeStackNavigator()
@ -28,6 +29,11 @@ export default function App(): React.ReactElement {
>
<Stack.Screen name="Login" component={LoginScreen} />
<Stack.Screen name="Main" component={TabNavigator} />
<Stack.Screen
name="ProPaywall"
component={ProPaywallScreen}
options={{ presentation: 'modal' }}
/>
</Stack.Navigator>
</NavigationContainer>
</AuthProvider>