npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

react-native-android-backer

v0.1.6

Published

A library for react native with react-navigation app to handle android back button event

Downloads

9

Readme

React Native Android Backer

中文文档

What

React Native Android Backer is a solution for React Native Android back button. It combines the react-navigation API to provide powerful functionality. The features as follow:

  • Double click back button to exit app
  • Make back button disabled
  • Click back button to navigate page
  • Click back button to close modal

Install

npm install react-native-android-backer
// or 
yarn add react-native-android-backer

Dependency Library

Please make sure project have installed libraries as follow:

  • react: >= 16.x
  • react-native: >= 0.57.x
  • react-navigation: >= 3.x

Get Started

  1. First step is to use withBacker function to encapsulation the react-navigationAppNavigator component:
import { withBacker } from 'react-native-android-backer';
import AppNavigator from './navigation/AppNavigator';

const AppNavigatorWithBacker = withBacker(AppNavigator, {
  exitToast: () => console.log('Click again will exit App'),
  isExitScreen: routeName => false,
});

withBacker(component, options): this API is a HOC, it receive 2 params:

  • component: type is React component, the wrap component
  • options: type is object, use to config the back button behaviors,the attributes as follow:
    • exitToast: type is function, the toast function for exit app
    • isExitScreen: type is function, check the current screen whether should exit app

AppNavigatior is the initialize file of use expo to create React Native project,the source file is here

  1. Second step is to replace AppNavigator to AppNavigatorWithBacker.
- <AppNavigator />
+ <AppNavigatorWithBacker />

API

React Native Android Backer use the react-navigation params to do different things according to the back button behaviors. The params as follow:

  • disableBack:type is boolean, set true to disable back button event.
  • backPage && backPageParams: backPage's type is string,backPageParams's type is object, which were make back button to navigate to backPage with backPageParams.
  • isModalShow && closeModal:isModalShow's type is function, closeModal's type is function, which were make back button to close modal.

Example:

import React, { Component } from 'react';

class Foo extends Component {
  constructor(props) {
    ...
    // define the react-navigation params in the constructor 
    props.navigation.setParams({
      disableBack: true,
      backPage: 'Bar', // the page when click back button will navigate to
      backPageParams: { foo: 'foo' }, // the params in the navigate behave
      isModalShow: () => this.state.isVisible, // the funtion to check the modal whether to open
      closeModal: () => this.setState({ isVisible: false }), // the function to close the modal
    });
  }
  ...
}

Extra API

React Native Android Backer also provide the extra API which is easy to use the features of react-navigation but no need the navigation object:

  • navigate(page: string): navigate to some page
  • goBack(): go back to latest page
  • getCurrentRoute(): get the current page object

Example:

import React, { Component } from 'react';
import { navigationServer } from 'react-native-android-backer';

class Foo extends Component {
  ...
  handleGoto = () => {
    navigationServer.navigate('Bar');
  }

  handleGoBack = () => {
    navigationServer.goBack();
  }

  getCurrentPage = () => {
    const currentPage = navigationServer.getCurrentRoute();
    // currentPage: {
    //   "key": "id-1552444588477-2",
    //   "params": {
    //     "disableBack": true,
    //   },
    //   "routeName": "Settings",
    // }
  }
  ...
}

Demo

LICENSE

Apache-2.0