JSPM

  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 40
  • Score
    100M100P100Q90880F
  • License MIT

Instagram style reels component for React Native

Package Exports

  • react-native-social-reels
  • react-native-social-reels/lib/commonjs/index.js
  • react-native-social-reels/lib/module/index.js
  • react-native-social-reels/src/index.ts

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (react-native-social-reels) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

react-native-social-reels

Instagram style reels package for React Native.


Installation

npm install react-native-social-reels

Peer Dependencies

yarn add react-native-video react-native-reanimated react-native-fast-image react-native-gesture-handler react-native-safe-area-context react-native-actions-sheet react-native-popup-menu react-native-svg react-native-worklets @react-navigation/native @react-navigation/bottom-tabs react-native-screens

iOS

cd ios
pod install

Usage

import React from "react";

import { GestureHandlerRootView } from "react-native-gesture-handler";

import { SafeAreaProvider } from "react-native-safe-area-context";

import { SheetProvider } from "react-native-actions-sheet";

import { MenuProvider } from "react-native-popup-menu";

import { Reels } from "react-native-social-reels";

export default function App() {
  return (
    <GestureHandlerRootView style={{ flex: 1 }}>
      <SafeAreaProvider>
        <SheetProvider>
          <MenuProvider>
            <Reels />
          </MenuProvider>
        </SheetProvider>
      </SafeAreaProvider>
    </GestureHandlerRootView>
  );
}

Features

  • Vertical reels
  • Auto play videos
  • Comment sheet
  • Reels header
  • Bottom tab support
  • Gesture support
  • React Native Reanimated support
  • FastImage support
  • Customizable UI

License

MIT