Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
}).then((path) => {
this.setState({
show: true,
uri: this.state.saveFormat === ImageFormat.base64 ? path : Platform.OS === 'android' ? 'file://' + path : path,
loading: false
})
}).catch((err) => {
console.log('====================================')
_switchBase64Res = () => {
this.setState({
saveFormat: this.state.saveFormat === ImageFormat.base64 ? ImageFormat.png : ImageFormat.base64
})
}