Packages

Import NPM packages into your app

You can add compatible NPM packages to your app project to extend functionality and features.

⚠️

React Native & Expo

Imported libraries must be compatible with React Native and the Expo managed workflow

⚠️

Cocoapods

Packages which require running pod install for iOS installation are not currently supported. Look for packages without this requirement

⚠️

Linking

Packages which require linking are not currently supported. Look for packages which have auto-linking

Finding compatible packages

A great place to start is Expo's packages since Draftbit apps are built using the Expo toolset for React Native. In fact, there's already several of these built-in that you can enable in your Functions.

You can find several compatible libraries in the React Native directory as well. Make sure they also meet the above requirements.

If you want to import libraries from the npm registry, please follow Expo's tips for determining compatibility.

Adding a package

First, navigate to the Packages tab in the Custom Code modal and click the + icon to add a new package.

Property

Description

Package Name

The NPM package name - e.g. expo-asset, expo-av

Version

The package version to import with or without npm ~, ^, or >= syntax. Avoid usinglastest

Examples:3.66.9, ~9.0.2

Environment

Any - the package will be imported when building in Development and Production environments
Production Only - the package will only be imported when building in Production environment Development Only - the package will only be imported when building in Development environment

Devices

Any - the package will be imported when running on all device types
Native Only - the package will only be imported when the app is running on native devices - i.e. iOS and Android, not Web (browser) Web Only - the package will only be imported when the app is running in a web browser iOS Only - the package will only be imported when the app is running on an iOS device Android Only - the package will only be imported when the app is running on an Android device

Context

Any - the package will be imported when building in Development and Production environments
Preview Only - the package will only be imported when developing in the Builder using the app previews Export/Publish Only - the package will only be imported when exporting or publishing the app

❗️

Avoid using the latest version of a package.

Since using the latest version of a package can cause your app to break unexpectedly when Draftbit or the package is updated, avoid using latest as the version. Instead enter a specific version number (e.g. 3.33) with or without npm ~, ^, or >= syntax.

Check below for a list of common packages and their compatible version.

To remove a package, click the '-' button at the end of the row where the package is listed.

Package Import Example

As an example of how you might use an imported package in your app, we'll demonstrate importing a package that lets us encode some text into a base64 string.

Import the package

Add version 2.1.1 of react-native-quick-base64 to your app's package imports.

You can read more about this package here: https://github.com/craftzdog/react-native-quick-base64

Save and close

Export the needed modules

Since we want to use the package's functionality in a Custom Function we'll export the modules we need from a Custom File. Let's name the file Base64 and in our case we want to expose the methods for encoding and decoding.

export { btoa, atob } from 'react-native-quick-base64';

Save and close

📘

For info on using a package for JSX components, see the JSX docs.

Use the modules in a Custom Function

Now that we've made our encode/decode logic available in a Custom File, we can import that package into a Custom Function and use it. Let's create a new Global Function and name it base64Encode

We'll create a new Parameter which will be the value we pass to this function that we want to encode, and we'll add the file we created previously in the Custom File Imports section which will add the import above the function.

Since the name of our Custom File is Base64that is the name used when importing the file. So we can then access our exported methods from the file.

return Base64.btoa(value)

Base64 being the name of our import and btoa being one of the exported modules in the file.

Save and close

Use the Custom Function in your app

We are now able to use our Custom Function to encode a text to base64. We can use them in a Transform Function or in an Action flow, for example.

Here it's being used as a transform in a Text component

📘

If you need to expose modules from a package to Custom Functions, then you can export them from a Custom File which can then be used from a Custom Function. For instance, you can have a single Libsfile for all your exports.

If you are using a package that provides a JSX component, for instance, then you can instead import the package at the top of your Custom File and then export a component for use with a Custom Code component.

Expo SDK Packages

The following are common packages in the Expo SDK that are not yet part of the Draftbit platform. We've made these available by default for use in Custom Functions.

Examples for how to add these to your Draftbit app in custom code are here.

Package Name

Description

expo-asset

Package that provides an interface to access Expo's asset system.

expo-av

Package that provides Audio.Sound objects and Video components for managing audio and video playback.

expo-clipboard

Provides an interface for getting and setting Clipboard content on Android, and iOS.

expo-constants

Provides system information that remains constant throughout the lifetime of an app's install.

expo-camera

Provides a component to use the device's camera to take photos or record video.

  • Must require CAMERA permissions for the camera and AUDIO_RECORDING permissions to record video.

expo-barcode-scanner

Provides a component to use the device's camera as a barcode scanner.

  • Must require CAMERA permissions

expo-permissions

Package that handles asking the user for various device permissions.

expo-image-picker

Package that provides access to the system's UI for selecting images and videos from the phone's library or taking a photo with the camera.

  • Must require CAMERA permissions for the camera and MEDIA_LIBRARY permissions to access and select from phone's library.

expo-sensors

Provides various APIs for accessing device sensors to measure motion, orientation, pressure, magnetic fields, and step count.

expo-sharing

Package that allows sharing files directly with other compatible applications.

expo-sms

Package that provides access to the system's UI/app for sending SMS messages.

Async Storage

Provides an asynchronous, unencrypted, persistent, key-value storage solution

RN Alert

Launches an alert dialog with the specified title and message.

RN Appearance

Package that exposes information about the user's appearance preferences, such as their preferred color scheme (light or dark).

RN Dimensions

Package that updates width and height values when screen size changes.

RN Keyboard

Package that provides methods to control keyboard events.

RN Platform

Package that provides a module to detect the platform (iOS or Android) in which the app is running. Platform specific tasks are handled using it.

RN Vibration

Package that contains the method to trigger a vibration with a fixed duration. The duration here is specified in milliseconds.

Recommended Package Versions

Some packages have specific versions which should be used. Below you'll find a list of some of those packages and the recommended version to use.

PackageVersion
@shopify/mime-types2.0.0
react-native-purchases^5.0.1
stream-chat-expo^5.1.0
victory-native^36.6.7
Package5051
@draftbit/core^50.0.0^51.0.0
@draftbit/maps^50.0.0^51.0.0
@draftbit/native^50.0.0^51.0.0
@draftbit/types^50.0.0^51.0.0
@draftbit/ui^50.0.0^51.0.0
@draftbit/themes^50.0.0^51.0.0
@expo/vector-icons^14.0.0^14.0.3
@react-native-async-storage/async-storage1.21.01.23.1
@react-native-community/datetimepicker7.6.18.0.1
@react-native-community/netinfo11.1.011.3.1
@react-native-community/slider4.4.24.5.2
@react-native-masked-view/masked-view0.3.00.3.1
@react-native-picker/picker2.6.12.7.5
@react-native-segmented-control/segmented-control2.4.12.5.2
@segment/analytics-react-native2.19.12.19.1
@segment/sovran-react-native^1.1.1^1.1.1
@sentry/react-native~5.20.0~5.24.3
@shopify/flash-list1.6.31.6.4
@shopify/react-native-skia0.1.2211.2.3
@stripe/stripe-react-native~0.35.10.37.2
expo-analytics-amplitude~11.3.0~11.3.0
expo-apple-authentication~6.3.0~6.4.2
expo-application~5.8.4~5.9.1
expo-asset~9.0.2~10.0.10
expo-auth-session~5.4.0~5.5.2
expo-av~13.10.6~14.0.7
expo-background-fetch~11.8.1~12.0.1
expo-barcode-scanner~12.9.3~13.0.1
expo-battery~7.7.2~8.0.1
expo-blur~12.9.2~13.0.2
expo-brightness~11.8.0~12.0.1
expo-build-properties~0.11.1~0.12.5
expo-calendar~12.2.1~13.0.5
expo-camera~14.1.3~15.0.16
expo-cellular~5.7.1~6.0.3
expo-checkbox~2.7.0~3.0.0
expo-clipboard~5.0.1~6.0.3
expo-constants~15.4.6~16.0.2
expo-contacts~12.8.2~13.0.5
expo-crypto~12.8.1~13.0.2
expo-dev-client~3.3.11~4.0.29
expo-device~5.9.4~6.0.2
expo-document-picker~11.10.1~12.0.2
expo-face-detector~12.6.1~12.7.1
expo-file-system~16.0.9~17.0.1
expo-font~11.10.3~12.0.10
expo-gl-cpp~11.4.0~11.4.0
expo-gl~13.6.0~14.0.2
expo-haptics~12.8.1~13.0.1
expo-image-loader~4.6.0~4.7.0
expo-image-manipulator~11.8.0~12.0.5
expo-image-picker~14.7.1~15.0.7
expo-in-app-purchases~14.3.0~14.3.0
expo-intent-launcher~10.11.0~11.0.1
expo-keep-awake~12.8.2~13.0.2
expo-linear-gradient~12.7.2~13.0.2
expo-linking~6.2.2~6.3.1
expo-local-authentication~13.8.0~14.0.1
expo-localization~14.8.4~15.0.3
expo-location~16.5.5~17.0.1
expo-mail-composer~12.7.1~13.0.1
expo-media-library~15.9.2~16.0.5
expo-module-template~10.13.2~10.14.13
expo-modules-core~1.11.13~1.12.26
expo-navigation-bar~2.8.1~3.0.7
expo-network~5.8.0~6.0.1
expo-notifications~0.27.7~0.28.19
expo-permissions~14.4.0~14.4.0
expo-print~12.8.1~13.0.1
expo-random~13.6.0~14.0.1
expo-screen-capture~5.8.1~6.0.1
expo-screen-orientation~6.4.1~7.0.5
expo-secure-store~12.8.1~13.0.2
expo-sensors~12.9.1~13.0.9
expo-sharing~11.10.0~12.0.1
expo-sms~11.7.1~12.0.1
expo-speech~11.7.0~12.0.2
expo-splash-screen~0.26.4~0.27.7
expo-sqlite~13.4.0~14.0.6
expo-status-bar~1.11.1~1.12.1
expo-store-review~6.8.3~7.0.2
expo-system-ui~2.9.4~3.0.7
expo-task-manager~11.7.3~11.8.2
expo-tracking-transparency~3.3.0~4.0.2
expo-updates~0.24.12~0.25.27
expo-video-thumbnails~7.9.0~8.0.0
expo-web-browser~12.8.2~13.0.3
lottie-react-native6.5.16.7.0
react-dom18.2.018.2.0
react-native-branch^5.4.0^5.4.0
react-native-gesture-handler~2.14.0~2.16.1
react-native-get-random-values~1.8.0~1.11.0
react-native-maps1.10.01.14.0
react-native-pager-view6.2.36.3.0
react-native-reanimated~3.6.2~3.10.1
react-native-safe-area-context4.8.24.10.5
react-native-screens~3.29.03.31.1
react-native-svg14.1.015.2.0
react-native-view-shot3.8.03.8.0
react-native-web~0.19.6~0.19.10
react-native-webview13.6.413.8.6
react-native0.73.60.74.5
react18.2.018.2.0
sentry-expo~7.2.0~7.0.0
unimodules-app-loader~4.5.1~4.6.0
unimodules-image-loader-interface~6.1.0~6.1.0

What’s Next

Learn about using imported packages in your app