react-native-signature-canvas
react-native-signature-canvas copied to clipboard
How can I remove the bottom margin?
<SignatureScreen
...
webStyle={`
.m-signature-pad {
flex: 1;
box-shadow: none;
border-radius: 10px;
}
.m-signature-pad--footer {
display: none;
}
`}
/>
Is this problem solved?
@YanYuanFE Not yet! Is there any solution?
<View style={styles.box}>
<SignatureScreen
ref={ref}
onOK={handleSignature}
webStyle={`
.m-signature-pad {
flex: 1;
box-shadow: none;
border-radius: 10px;
}
.m-signature-pad--footer {
display: none;
}
`}
backgroundColor={'rgba(255,255,255,0)'}
/>
</View>
box: {
backgroundColor: 'green',
height: 300
}
you can use a View box with style: height
height: 100vh;