Skip to content

R-yan/React-Native-Back-Handler-iOS

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 

Repository files navigation

React-Native-Back-Handler-iOS

An app exit from react-native to native

You need to import NativeModules from react-native

Your closing logic should look like this

  _onClosePress() {
    if (Platform.OS === 'android') {
      BackHandler.exitApp();
    } else {
      let BackHandlerIOS = NativeModules.BackHandlerIOS;
      BackHandlerIOS.exitApp(null);
    }
  }

This is useful when you need to close the react native app integrated into the native app

You need to place BackHandlerIOS.m into your existing Xcode project

About

An app exit from react-native to native

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Objective-C 100.0%