react-native-signature-canvas
react-native-signature-canvas copied to clipboard
Not working on Android SDK built for arm64.
Does not render. nothing shows up on the screen. works on ios. see image

How to fix
You can first try whether react-native-webview can be used normally。
Found myself in the same situation, checked webview, it was working. Turns out the problem was with the formatting.
Removed/changed the WebStyle property and it works again.
I my case, used something to get the window height like this:
const windowHeight = Dimensions.get('window').height;
webStyle={`.m-signature-pad { top: 0; left: 0; right: 0; bottom: 0; min-height: ${windowHeight - 100}px; margin: 0; }}