// import { enableSecureView, disableSecureView, forbidAndroidShare, allowAndroidShare } from 'react-native-prevent-screenshot-ios-android';
// import { Platform } from 'react-native';
// import { isDesktop } from '../blue_modules/environment';

export const enableScreenProtect = () => {
  //   if (isDesktop) return;
  //   if (Platform.OS === 'ios') {
  //     enableSecureView();
  //   } else if (Platform.OS === 'android') {
  //     forbidAndroidShare();
  //   }
};

export const disableScreenProtect = () => {
  //   if (isDesktop) return;
  //   if (Platform.OS === 'ios') {
  //     disableSecureView();
  //   } else if (Platform.OS === 'android') {
  //     allowAndroidShare();
  //   }
};

// CURRENTLY UNUSED AS WE WAIT FOR NAV 7 SUPPORT