Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR JAVASCRIPT

react native open gmail app

openMailApp() {
    if (Platform.OS === 'android') {
      NativeModules.UIMailLauncher.launchMailApp(); // UIMailLauncher is the 
      return;
    }
    Linking.openURL('message:0'); // iOS
    return;
  }
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #react #native #open #gmail #app
ADD COMMENT
Topic
Name
9+9 =