Nguyen Bao Duy

Results 17 comments of Nguyen Bao Duy

In my case, I noticed that there is a Keyboard listener to set height for iOS in `KeyboardAwareHOC.js` So I just add another listener in my Screen to get the...

For who replicated this issue and do use react-navigation in the project, you can set the code like this: ``` import { useFocusEffect } from '@react-navigation/native'; //... useFocusEffect( React.useCallback(() =>...

I recommend using https://github.com/mrousavy/react-native-mmkv

Yes, I'm now using my own code to handle phantom/torus/solflare wallet deeplink in my project. But now I need things to support consistently on both Web and App, which is,...

Hi @jordansexton, thanks for the invitation, it is happy to help the community. But let me check my code first, I'm not sure if it can work for community. Hi...

In my case, the issue was because I set `width: screenWidth` in `contentContainerStyle` and when I remove `contentContainerStyle`, and add a view inside with that style, it working. ``` ........

For a temp workaround, you can put these to the top of `build.sh`, below `readonly REPO_ROOT_DIR="$(dirname "${__DIRNAME__}")"`: ``` METAMASK_BUILD_TYPE="main" METAMASK_ENVIRONMENT="local" ```

Current workaround I can found for now is add `maxHeight: ` to style prop.

In my case, The issues happened when I increased `minSdkVersion` from 21 to 23. I'm able to reduce APK size a little by adding `android:extractNativeLibs="true"` to AndroidManifest.xml but [there is...

I'm not really like expo, but `expo-secure-store` actually support saved data when App is uninstall for both Android and iOS (It not use keychain in iOS though). So there should...