You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am using following code to view pdf from device it is working fine but ,it is taking extra white space at header and footer section , I want to remove that extra space can you please help me ?
I am using following code to view pdf from device it is working fine but ,it is taking extra white space at header and footer section , I want to remove that extra space can you please help me ?
const handlePress = async (path) => {
const granted = await PermissionsAndroid.request(
PermissionsAndroid.PERMISSIONS.READ_EXTERNAL_STORAGE,
);
if (granted === PermissionsAndroid.RESULTS.GRANTED) {
// Custom logic before opening the file
FileViewer.open(path, { showOpenWithDialog: true, })
.then(() => {
// Custom logic after opening the file
})
.catch((err) => {
console.log('err: ', err);
});
} else {
console.log('Permission denied');
}
};
The text was updated successfully, but these errors were encountered: