“React Native Open Gmail App” Ответ

отреагировать Native Open Pemlect Client

<Button onPress={() => Linking.openURL('mailto:support@example.com') }
      title="support@example.com" />
        
        
With subject and body:

<Button onPress={() => Linking.openURL('mailto:support@example.com?subject=SendMail&body=Description') }
      title="support@example.com" />
Panzer

React Native Open Gmail App

openMailApp() {
    if (Platform.OS === 'android') {
      NativeModules.UIMailLauncher.launchMailApp(); // UIMailLauncher is the 
      return;
    }
    Linking.openURL('message:0'); // iOS
    return;
  }
Singh99

Ответы похожие на “React Native Open Gmail App”

Вопросы похожие на “React Native Open Gmail App”

Больше похожих ответов на “React Native Open Gmail App” по JavaScript

Смотреть популярные ответы по языку

Смотреть другие языки программирования