* feat: Add React Native 0.66 support * Generate lockfiles * Update Podfile.lock * chore: Migrate from react-native-navigation to react-navigation (#491) * Migrate RNN -> RN * Migrate all screens * Fix get permission status * fix app name * Update AppDelegate.m * Fix Info.plist * Set `UIViewControllerBasedStatusBarAppearance` to `YES` * Only enable `audio` if user granted microphone permission * Update App.tsx * Fix RNGH for Android * Use `navigate` instead of `push` * Fix animation * Upgrade @types/react-native * "Splash" -> "PermissionsPage"
9 lines
148 B
TypeScript
9 lines
148 B
TypeScript
export type Routes = {
|
|
PermissionsPage: undefined;
|
|
CameraPage: undefined;
|
|
MediaPage: {
|
|
path: string;
|
|
type: 'video' | 'photo';
|
|
};
|
|
};
|