react-native-signature-canvas icon indicating copy to clipboard operation
react-native-signature-canvas copied to clipboard

Not working on Android SDK built for arm64.

Open kumw1975 opened this issue 4 years ago • 2 comments

Does not render. nothing shows up on the screen. works on ios. see image Screen Shot 2021-04-07 at 12 50 36 PM

How to fix

kumw1975 avatar Apr 07 '21 19:04 kumw1975

You can first try whether react-native-webview can be used normally。

YanYuanFE avatar Apr 12 '21 08:04 YanYuanFE

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; }}

Skullcan avatar Aug 16 '21 12:08 Skullcan