feat(mobile): overhaul mobile app with Pro paywall, rewarded video refill, iOS permissions, and build APK
This commit is contained in:
parent
e87567fa90
commit
7e264dca37
8 changed files with 535 additions and 27 deletions
|
|
@ -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>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue