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 🙏

© 2025 – Pkg Stats / Ryan Hefner

@mobigaurav/react-native-quick-actions

v1.0.0

Published

Home-screen quick actions for React Native (iOS 3D Touch / Android App Shortcuts)

Readme

@mobigaurav/react-native-quick-actions

npm version License: MIT Platform

A comprehensive React Native library for implementing home-screen quick actions on both iOS and Android platforms.

Provides home-screen long-press quick actions (iOS 3D Touch / Android App Shortcuts). Not App Intents/Siri Shortcuts.

✨ Features

  • 🎯 iOS 3D Touch / Force Touch shortcuts - Native iOS app shortcuts
  • 🤖 Android App Shortcuts (API 25+) - Modern Android shortcuts
  • 🔄 Dynamic shortcuts - Update shortcuts at runtime
  • 🎨 Custom icons support - SF Symbols (iOS) & Drawable resources (Android)
  • 🔗 Deep linking integration - Navigate directly to specific screens
  • 📱 Cross-platform - Single API for both platforms
  • 🔧 TypeScript support - Full type definitions included
  • Production ready - Battle-tested in enterprise applications

📦 Installation

npm install @mobigaurav/react-native-quick-actions
# or
yarn add @mobigaurav/react-native-quick-actions

Note: This library requires React Native 0.60+ and uses auto-linking.

🍎 iOS Setup

  1. Add to Podfile (if using manual linking):
pod 'RNAppShortcuts', :path => '../node_modules/@mobigaurav/react-native-quick-actions'
  1. Update AppDelegate.m:
#import <RNAppShortcuts/RNAppShortcuts.h>

- (void)application:(UIApplication *)application performActionForShortcutItem:(UIApplicationShortcutItem *)shortcutItem completionHandler:(void (^)(BOOL))completionHandler {
    [RNAppShortcuts handleShortcutItem:shortcutItem];
    completionHandler(YES);
}
  1. Run pod install:
cd ios && pod install

🤖 Android Setup

  1. Add package to MainApplication.java (if using manual linking):
import com.appshortcuts.RNAppShortcutsPackage;

@Override
protected List<ReactPackage> getPackages() {
    return Arrays.<ReactPackage>asList(
        new MainReactPackage(),
        new RNAppShortcutsPackage() // Add this line
    );
}
  1. Handle shortcuts in MainActivity.java:
import com.appshortcuts.RNAppShortcutsModule;

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    RNAppShortcutsModule.handleShortcut(getIntent());
}

@Override
protected void onNewIntent(Intent intent) {
    super.onNewIntent(intent);
    RNAppShortcutsModule.handleShortcut(intent);
}

💡 Advanced Usage

Dynamic Shortcuts Based on User State

// Update shortcuts based on user authentication
const updateShortcuts = (isLoggedIn, userDevices) => {
  const shortcuts = [];
  
  if (isLoggedIn) {
    shortcuts.push({
      id: 'profile',
      title: 'My Profile',
      icon: 'person.circle',
      data: { screen: 'Profile' }
    });
    
    // Add device-specific shortcuts
    userDevices.slice(0, 2).forEach(device => {
      shortcuts.push({
        id: `device_${device.id}`,
        title: device.name,
        subtitle: `Control ${device.type}`,
        icon: 'gear',
        data: { screen: 'DeviceControl', deviceId: device.id }
      });
    });
  } else {
    shortcuts.push({
      id: 'login',
      title: 'Sign In',
      icon: 'person.badge.key',
      data: { screen: 'Login' }
    });
  }
  
  AppShortcuts.setShortcuts(shortcuts);
};

Error Handling

try {
  await AppShortcuts.setShortcuts(shortcuts);
  console.log('Shortcuts updated successfully');
} catch (error) {
  console.error('Failed to update shortcuts:', error);
}

🚀 Quick Start

import AppShortcuts from '@mobigaurav/react-native-quick-actions';

// 1. Set up shortcuts
AppShortcuts.setShortcuts([
  {
    id: 'compose',
    title: 'Compose Message',
    subtitle: 'Start a new conversation',
    icon: 'plus.message', // iOS: SF Symbol, Android: drawable
    data: { screen: 'Compose', action: 'new' }
  },
  {
    id: 'search',
    title: 'Search',
    subtitle: 'Find messages and contacts',
    icon: 'magnifyingglass',
    data: { screen: 'Search' }
  }
]);

// 2. Listen for shortcut activation
AppShortcuts.onShortcutPressed((shortcut) => {
  console.log('Shortcut activated:', shortcut);
  
  // Navigate based on shortcut data
  switch (shortcut.data.screen) {
    case 'Compose':
      navigation.navigate('ComposeScreen');
      break;
    case 'Search':
      navigation.navigate('SearchScreen');
      break;
  }
});

// 3. Handle app launch via shortcut
AppShortcuts.getInitialShortcut().then((shortcut) => {
  if (shortcut) {
    console.log('App launched via shortcut:', shortcut);
    // Handle initial navigation
    handleShortcutNavigation(shortcut);
  }
});

📚 API Reference

Methods

| Method | Description | Returns | |--------|-------------|----------| | setShortcuts(shortcuts) | Set dynamic shortcuts for the app | Promise<boolean> | | clearShortcuts() | Remove all dynamic shortcuts | Promise<boolean> | | onShortcutPressed(callback) | Listen for shortcut press events | EventSubscription | | getInitialShortcut() | Get shortcut that launched the app | Promise<Shortcut \| null> | | isSupported() | Check if shortcuts are supported | boolean |

Event Handling

// Set up listener
const subscription = AppShortcuts.onShortcutPressed((shortcut) => {
  // Handle shortcut
});

// Clean up listener
subscription.remove();

🔧 TypeScript Support

interface Shortcut {
  id: string;                    // Unique identifier
  title: string;                 // Display title
  subtitle?: string;             // Optional subtitle
  icon?: string;                 // Icon name/resource
  data?: { [key: string]: any }; // Custom data payload
}

interface EventSubscription {
  remove(): void;
}

📱 Platform Support

| Platform | Version | Features | |----------|---------|----------| | iOS | 9.0+ | 3D Touch, Force Touch, Long Press | | Android | 7.1+ (API 25+) | App Shortcuts, Pinned Shortcuts |

Icon Guidelines

  • iOS: Use SF Symbol names (e.g., plus.circle, gear, bell.fill)
  • Android: Use drawable resource names (e.g., ic_add, ic_settings)

🤝 Contributing

Contributions are welcome! Here's how you can help:

  1. 🐛 Report bugs - Open an issue with details
  2. 💡 Suggest features - Share your ideas
  3. 🔧 Submit PRs - Fix bugs or add features
  4. 📖 Improve docs - Help others understand

Development Setup

git clone https://github.com/mobigaurav/react-native-quick-actions.git
cd react-native-quick-actions
npm install

📄 License

MIT © Gaurav Kumar

🙏 Acknowledgments

  • Originally developed for enterprise use
  • Inspired by the React Native community's need for native shortcuts
  • Thanks to all contributors and users!

📞 Support


Made with ❤️ for the React Native community