diff --git a/packages/components/.eslintignore b/packages/components/.eslintignore new file mode 100644 index 000000000..53c37a166 --- /dev/null +++ b/packages/components/.eslintignore @@ -0,0 +1 @@ +dist \ No newline at end of file diff --git a/packages/mobile/.eslintignore b/packages/mobile/.eslintignore index 7b9e4fbcc..aee931263 100644 --- a/packages/mobile/.eslintignore +++ b/packages/mobile/.eslintignore @@ -1,3 +1,8 @@ metro.config.js -packages/mobile/html/Web.bundle/src/components -packages/mobile/html/Web.bundle/src/web-src +html/**/* +node_modules +ios +e2e +android +fastlane +WebFrame \ No newline at end of file diff --git a/packages/mobile/src/AppStack.tsx b/packages/mobile/src/AppStack.tsx index d1abe60a6..d2ec25580 100644 --- a/packages/mobile/src/AppStack.tsx +++ b/packages/mobile/src/AppStack.tsx @@ -146,6 +146,19 @@ export const AppStackComponent = (props: ModalStackNavigationProp<'AppStack'>) = return removeObserver }, [application, navigation]) + if (IsDev) { + return ( + ({ + headerShown: false, + })} + initialRouteName={SCREEN_NOTES} + > + + + ) + } + return ( { ref={webViewRef} source={{ uri: sourceUri }} originWhitelist={['*']} + contentInset={{ top: 30, bottom: 10 }} onLoad={() => {}} onError={(err) => console.error('An error has occurred', err)} onHttpError={() => console.error('An HTTP error occurred')}