Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 24 additions & 1 deletion e2e/apps/react-native-oidc/app.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,5 +17,28 @@ export default ({ config }: ConfigContext) => ({
...config,
extra: {
env
}
},
newArchEnabled: true,
"android": {
"package": "com.anonymous.reporeactnativeoidc"
},
"ios": {
"bundleIdentifier": "com.anonymous.reporeactnativeoidc"
},
scheme: "com.oktapreview.jperreault-test",
"plugins": [
"expo-font",
"expo-router",
[
"expo-build-properties",
{
"ios": {
"newArchEnabled": true
},
"android": {
"newArchEnabled": true
}
}
]
]
});
45 changes: 0 additions & 45 deletions e2e/apps/react-native-oidc/app/(login)/_layout.tsx

This file was deleted.

56 changes: 0 additions & 56 deletions e2e/apps/react-native-oidc/app/(login)/index.tsx

This file was deleted.

104 changes: 0 additions & 104 deletions e2e/apps/react-native-oidc/app/(login)/token.tsx

This file was deleted.

15 changes: 11 additions & 4 deletions e2e/apps/react-native-oidc/app/(tabs)/_layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -29,15 +29,22 @@ export default function TabLayout() {
<Tabs.Screen
name="index"
options={{
title: 'Home',
title: 'Login',
tabBarIcon: ({ color }) => <IconSymbol size={28} name="house.fill" color={color} />,
}}
/>
<Tabs.Screen
name="explore"
name="credentials"
options={{
title: 'Explore',
tabBarIcon: ({ color }) => <IconSymbol size={28} name="paperplane.fill" color={color} />,
title: 'Creds',
tabBarIcon: ({ color }) => <IconSymbol size={28} name="list.bullet" color={color} />,
}}
/>
<Tabs.Screen
name="token"
options={{
title: 'Token',
tabBarIcon: ({ color }) => <IconSymbol size={28} name="lock.document.fill" color={color} />,
}}
/>
</Tabs>
Expand Down
Loading