• Stars
    star
    170
  • Rank 216,274 (Top 5 %)
  • Language
    TypeScript
  • License
    MIT License
  • Created about 2 years ago
  • Updated about 2 months ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

A React Native component to show image and video stories ✨ πŸŽ–

Story View - Simform

react-native-story-view

react-native-story-view on npm react-native-story-view downloads react-native-story-view install size Android iOS MIT


This library provides status/stories features like Instagram/WhatsApp or other social media, It is simple to use and fully customizable. It works on both android and iOS platforms.

Quick Access

Installation | StoryView | Usage | Props | Example | License

Installation

1. Install Story View
$ npm install react-native-story-view
# --- or ---
$ yarn add react-native-story-view
2. Install peer dependencies
$ npm install react-native-video react-native-reanimated react-native-gesture-handler react-native-video-cache-control
# --- or ---
$ yarn add react-native-video react-native-reanimated react-native-gesture-handler react-native-video-cache-control

Note: If you already have these libraries installed and at the latest version, you are done here!

3. Install cocoapods in the ios project
cd ios && pod install

Note: Make sure to add Reanimated's babel plugin to your babel.config.js

module.exports = {
      ...
      plugins: [
          ...
          'react-native-reanimated/plugin',
      ],
  };

Extra Step

Android:
If you're facing issue related to 'android-scalablevideoview' or 'videocache' module not found. Add this code in android's build.gradle

jcenter() {
    content {
        includeModule("com.yqritc", "android-scalablevideoview")
        includeModule("com.danikula", "videocache")
    }
}
Know more about react-native-video, react-native-reanimated, react-native-gesture-handler and react-native-video-cache-control

StoryView

🎬 Preview


SimformSolutions SimformSolutions

Usage

StoryView is divided into several components, MultiStory is the root component. ProfileHeader and Footer are individual components for header and footer. StoryContainer internally used for rendering Story. We'll look usage and customization of all these.


Checkout Multi Story Example here
Checkout Stories Data Format here
Checkout Single Story Example here

Story Data Format

Define the users' stories array in the below format. There will be multiple users and multiple stories inside.

const userStories = [
    {
      id: 1, //unique id (required)
      username: 'Alan', //user name on header
      title: 'Albums', //title below username
      profile: 'https://sosugary.com/wp-content/uploads/2022/01/TheWeeknd_001.jpg', //user profile picture
      stories: [
        {
          id: 0, //unique id (required)
          url: 'https://i1.sndcdn.com/artworks-IrhmhgPltsdrwMu8-thZohQ-t500x500.jpg', // story url
          type: 'image', //image or video type of story
          duration: 5, //default duration
          storyId: 1,
          isSeen: false,
        },
        {
          id: 1,
          url: 'https://storage.googleapis.com/gtv-videos-bucket/sample/BigBuckBunny.mp4',
          type: 'video',
          duration: 15,
          storyId: 1,
          isSeen: false,
        },
      ],
    },
    {
      id:2,
      username: 'Weekend',
      ...
    }
]

MultiStory

SimformSolutions SimformSolutions

This is the root component of StoryView package. It displays horizontal list of users with pre-defined ui from StoryAvatar component and uses animated flatlist under the hood to display stories. StoryContainer is used under the hood for story so all customization can be done from storyContainerProps.

Basic Usage

const multiStoryRef = useRef<MultiStoryRef>(null);

<MultiStory
  stories={stories}
  ref={multiStoryRef}
  avatarProps={{
    userNameStyle: { fontSize: 16 },
  }}
  // all StoryContainer props applies here
  storyContainerProps={{
    renderHeaderComponent: ({ userStories, progressIndex, userStoryIndex }) => (
      <Header {...{ userStories, progressIndex, multiStoryRef }} />
    ),
    renderFooterComponent: ({ userStories, progressIndex, userStoryIndex }) => (
      <Footer {...{ userStories }} />
    ),
    barStyle: {
      barActiveColor: Colors.red,
    },
  }}
/>;

Checkout Multi Story Example here

ProfileHeader

SimformSolutions

This is an individual component, To display user details on header like instagram/whatsapp. In renderHeaderComponent of StoryContainer, Custom component can be assigned. For MultiStory, renderHeaderComponent receives progressIndex, userStories, story and userStoryIndex for getting current user data.

const multiStoryRef = useRef(null);

<MultiStory
  ref={multiStoryRef}
  storyContainerProps={{
    renderHeaderComponent: ({
      userStories,
      story,
      progressIndex,
      userStoryIndex,
    }) => (
      <ProfileHeader
        userImage={{ uri: userStories?.profile ?? '' }}
        userName={userStories?.username}
        userMessage={userStories?.title}
        onClosePress={() => {
          multiStoryRef?.current?.close?.();
        }}
      />
    ),
  }}
/>;

Footer

SimformSolutions SimformSolutions

This is an individual component, To display footer like instagram. Any TextInput props can be directly passed to Footer. In renderFooterComponent of StoryContainer, Custom component can be assigned.

<MultiStory
  storyContainerProps={{
    renderFooterComponent: ({
      userStories,
      story,
      progressIndex,
      userStoryIndex,
    }) => (
      <Footer
        onIconPress={() => {
          console.log('Share icon clicked');
        }}
        onSendTextPress={() => {
          console.log('Message sent');
        }}
        shouldShowSendImage={true}
        shouldShowTextInputSend={true}
        placeholder="Enter Message"
      />
    ),
  }}
/>

Additional Reference

StoryContainer

This is the core component of StoryView, which provides all functionality of story view and customization. It is used to render all stories in MultiStory. This component is just for reference how storyContainerProps in MultiStory being passed in this component internally.

const [isStoryViewVisible, setIsStoryViewShow] = useState(false);

<StoryContainer
  visible={isStoryViewVisible}
  maxVideoDuration={10}
  stories={userStories[0].stories}
  renderFooterComponent={({ story, progressIndex }) => (
    <Footer
      onSendTextPress={() => {
        Alert.alert(`Current Story id ${story?.[progressIndex].id} `);
        Keyboard.dismiss();
      }}
      onIconPress={() => {
        Alert.alert('Current Story progress index' + progressIndex);
      }}
    />
  )}
  renderHeaderComponent={({ story, progressIndex }) => (
    <ProfileHeader
      userImage={{ uri: userStories[0]?.profile ?? '' }}
      userName={userStories[0]?.username}
      userMessage={userStories[0]?.title}
      onImageClick={() => {}}
      onClosePress={() => setIsStoryViewShow(false)}
    />
  )}
  //Callback when all stories completes
  onComplete={() => setIsStoryViewShow(false)}
/>;

MultiStoryContainer

MultiStory is wrapper on this component with extra horizontal user list UI of StoryAvatar. If MultiStory's horizontal list customisation is not sufficient for any use-case, use this base component and add your own customised horizontal user list UI.

SimformSolutions

Basic Usage

const [isStoryViewVisible, setIsStoryViewShow] = useState(false);
const [pressedIndex, setPressedIndex] = useState<number>(0);

const openStories = (index: number) => {
  setIsStoryViewShow(true);
  setPressedIndex(index);
};

  <View style={styles.container}>
    <FlatList
      horizontal
      data={userStories}
      keyExtractor={item => item?.id?.toString()}
      renderItem={({ item, index }) => (
        <Pressable onPress={() => openStories(index)}>
          <CustomStoryAvatar {...{ item, index }} />
        </Pressable>
      )}
    />
    {isStoryViewVisible && (
      // add other StoryContainer Props
      <MultiStoryContainer
        visible={isStoryViewVisible}
        onComplete={() => setIsStoryViewShow(false)}
        stories={userStories}
        renderHeaderComponent={...}
        renderFooterComponent={...}
        userStoryIndex={pressedIndex}
      />
    )}
  </View>

ProgressBar

SimformSolutions

ProgressBar customisation can be controlled through StoryContainer itself. enableProgress to make visible the progressbar.progressIndex to start story from any index. barStyle to customize look feel of progressbar.onChangePosition trigger when progressbar index will change returns current index.

<MultiStory
  storyContainerProps={{
    enableProgress: true,
    //Callback when progressbar index changes
    onChangePosition: position => {},
    barStyle: {
      barHeight: 2,
      barInActiveColor: 'green',
      barActiveColor: 'grey',
    },
    maxVideoDuration: 25,
    progressIndex: 0,
  }}
/>

Custom View

SimformSolutions

Pass any custom view in story view. It will be rendered on top of story view as it has an absolute position. In renderCustomView of StoryContainer, Any custom component can be assigned.

<MultiStory
  storyContainerProps={{
    renderCustomView: () => (
      <View
        style={{
          position: 'absolute',
          top: 40,
          right: 50,
        }}>
        <Image
          source={Images.star}
          style={{
            height: 25,
            width: 25,
            tintColor: 'green',
          }}
        />
      </View>
    ),
  }}
/>

Story Data

[{
  id: string;
  username: string;
  title: string;
  profile: string;
  stories:Array<Story>[
    {
      id: string;
      url: string;
      type: 'image' | 'video';
      duration: number
      isReadMore: boolean
      storyId: number,
      isSeen?: boolean,
    }
  ]
}]

Transitions

Cube Scale Default

Props

MultiStory


Name Default Type
Description
stories* undefined StoriesType[] Array of multiple user stories
ref null MultiStoryRef To access close story method
storyContainerProps {} StoryContainerProps Customize all story props, detailed props in below StoryContainer section
avatarProps {} StoryAvatarStyleProps Customize avatar component styles
onChangePosition null (progressIndex, storyIndex) => {} Callback when progress index changes
transitionMode TransitionMode.Cube TransitionMode: {Default, Cube, Scale} To customize user story transition, (TransitionMode.default : no transition, Transition.scale : zoomIn/zoomOut transition, Transition.Cube: 3D cube transition) cube
onComplete null (viewedStories?: Array<boolean[]>) => void Callback when stories closed or completes. viewedStories contains multi array of boolean whether story is seen or not
props - FlatListProps Pass any FlatList props to customize horizontal user list

StoryAvatarStyleProps


Name Default Type
Description
userNameStyle - TextStyle To change style of user name
userImageStyle - ImageStyle To change style of user avatar
containerStyle - ViewStyle To change style of image container
userImageProps - ImageProps To customize image props
userNameProps - ViewStyle To customize text props
rootProps - PressableProps To customize root view props
viewedStoryContainerStyle - ViewStyle To customize story avatar when all stories of it are seen


MultiStoryContainer


Name Default Type
Description
stories* undefined StoriesType[] Array of multiple user stories
visible* false boolean Hide / show story view
userStoryIndex 0 number Pass clicked index of horizontal user list.
storyContainerProps {} StoryContainerProps Customize all story props, detailed props in below StoryContainer section
onChangePosition null (progressIndex, userIndex) => {} Callback when progress index changes
transitionMode TransitionMode.Cube TransitionMode: {Default, Cube, Scale} To customize user story transition, (TransitionMode.default : no transition, Transition.scale : zoomIn/zoomOut transition, Transition.Cube: 3D cube transition) cube
onComplete null () => {} Callback when stories closed or complete
props - StoryContainerProps Pass any StoryContainerProps props to customize story


StoryContainer


Name Default Type
Description
visible* false boolean Hide / show story view
stories* undefined StoryType[] Array of stories
backgroundColor #000000 string Background color of story view
maxVideoDuration null number Override video progress duration (default is actual duration of video)
style {} ViewStyle Style of story view
showSourceIndicator true boolean Display indicator while video loading
sourceIndicatorProps {} ActivityIndicatorProps To override indicator props
onComplete null () => {} Callback when all stories completes
renderHeaderComponent null (callback: CallbackProps) => JSX.Element Render Header component (ProfileHeader) or custom component
renderFooterComponent null (callback: CallbackProps) => JSX.Element Render Footer component (Footer) or custom component
renderCustomView null (callback: CallbackProps) => JSX.Element Render any custom view on Story
renderIndicatorComponent {} () => JSX.Element Render loader when we press on Story, which represent loading state of story
storyContainerViewProps {} ViewProps Root story view props
headerViewProps {} ViewProps Header view wrapper props
footerViewProps {} ViewProps Footer view wrapper props
customViewProps {} ViewProps Custom view wrapper props
videoProps {} VideoProperties To override video properties
ref {} StoryRef To access 'pause' story method and 'viewedStories' stories object (Single Story)
customViewStyle {} ViewStyle Style of custom view container
headerStyle {} ViewStyle Style of header container
footerStyle {} ViewStyle Style of footer container


CallbackProps


Name Default Type
Description
progressIndex 0 number Current progress index of story
story undefined StoryType[] Current story array
userStories undefined StoriesType Current user story array (Only for Multi Story)
userStoryIndex undefined number Current user story index (Only for Multi Story)


StoryContainer: Progressbar


Name Default Type
Description
progressIndex 0 number To start story with any index
barStyle {
barActiveColor: #ffffff'
barInActiveColor: #FFFFFF7F
barHeight : 2
}
BarStyleProps Progressbar Style: (barActiveColor, barInActiveColor, barHeight)
enableProgress true boolean To display progressbar
progressViewProps {} ViewProps ProgressBar view wrapper props
onChangePosition null (position) => {} Callback when progress index changes


ProfileHeader


Name Default Type
Description
userImage {} ImageSourcePropType Circular view image
userName '' string To display username
userMessage '' string Display text below username
customCloseButton null any To render custom close button
closeIconProps {} ViewProps ProgressBar view wrapper props
onImageClick null () => {} Callback on user image click
rootStyle {} ViewStyle root view style changes
containerStyle {} ViewStyle container view style changes
userImageStyle {} ImageStyle To change profile Image view style
userNameStyle {} TextStyle To change profile name style
userMessageStyle {} TextStyle To change profile message/subtext style
closeIconStyle {} ImageStyle To change close icon style
userImageProps {} ImageProps User Image props
userMessageProps {} TextProps User Message Props
userNameProps {} TextProps User Name Props


Footer


Name Default Type
Description
customInput null TextInput Render any custom text input
shouldShowSendImage true bool Show/hide send icon image
onIconPress null () => {} Callback on send icon press
sendIconProps {} ImageProps Additional props to customize 'send' image view
sendText 'Send' string To change text 'send' with any other string
shouldShowTextInputSend true bool Show/hide send text inside text input (like instagram)
onSendTextPress null () => {} Callback on send text press
sendTextProps {} TextProps Additional props to customize 'send' text view
sendTextStyle {} TextStyle To change style of send text
sendIconStyle {} ImageStyle To change style of send icon
inputStyle {} StyleProp To change style of input
containerStyle {} ViewStyle To change style of root view
containerViewProps {} ViewProps Root view props
props - TextInputProps Pass any TextInput props on Footer component

Example

A full working example project is here Example

yarn
yarn example ios   // For ios
yarn example android   // For Android

TODO

  • Customize StoryAvatar in reference of Instagram
  • Customized Story example
  • Refactor Cube transition (make perfect cube in reference of Instagram)
  • Landscape support
  • Optimize video loading on android

Find this library useful? ❀️

Support it by joining stargazers for this repository.⭐

Bugs / Feature requests / Feedbacks

For bugs, feature requests, and discussion please use GitHub Issues, GitHub New Feature, GitHub Feedback

🀝 How to Contribute

We'd love to have you improve this library or fix a problem πŸ’ͺ Check out our Contributing Guide for ideas on contributing.

Awesome Mobile Libraries

License

More Repositories

1

flutter_showcaseview

Flutter plugin that allows you to showcase your features on flutter application. πŸ‘ŒπŸ”πŸŽ‰
Dart
1,370
star
2

SSComposeCookBook

A Collection of major Jetpack compose UI components which are commonly used.πŸŽ‰πŸ”πŸ‘Œ
Kotlin
577
star
3

SSCustomTabbar

Simple Animated tabbar with native control
Swift
559
star
4

SSCustomBottomNavigation

Animated TabBar with native control and Jetpack Navigation support..βœ¨πŸ”–πŸš€
Kotlin
476
star
5

SSSpinnerButton

Forget about typical stereotypic loading, It's time to change. SSSpinnerButton is an elegant button with a different spinner animations.
Swift
428
star
6

flutter_credit_card

A credit card widget for Flutter application.
Dart
385
star
7

flutter_calendar_view

A Flutter package allows you to easily implement all calendar UI and calendar event functionality. πŸ‘ŒπŸ”πŸŽ‰
Dart
370
star
8

SSffmpegVideoOperation

This is a library of FFmpeg for android... πŸ“Έ 🎞 πŸš‘
Kotlin
340
star
9

SSToastMessage

SSToastMessage is written purely in SwiftUI. It will add toast, alert, and floating message view over the top of any view. It is intended to be simple, lightweight, and easy to use. It will be a popup with a single line of code.
Swift
280
star
10

SSJetPackComposeProgressButton

SSJetPackComposeProgressButton is an elegant button with a different loading animations. πŸš€
Kotlin
265
star
11

ARKit2.0-Prototype

After Apple’s introduction of ARKit 2, we have been consistently working behind to create shared-AR experiences. Our goal is to improve the utility of mobile using AR experiences.
Swift
261
star
12

SSImagePicker

Easy to use and configurable library to Pick an image from the Gallery or Capture an image using a Camera... πŸ“Έ
Kotlin
261
star
13

audio_waveforms

Use this plugin to generate waveforms while recording audio in any file formats supported by given encoders or from audio files. We can use gestures to scroll through the waveforms or seek to any position while playing audio and also style waveforms
Dart
234
star
14

SSCustomEditTextOutLineBorder

Same as the Outlined text fields presented on the Material Design page but with some dynamic changes. πŸ“ πŸŽ‰
Kotlin
206
star
15

flutter_chatview

Highly customisable chat UI with reply and reaction functionality.
Dart
198
star
16

Awesome-Mobile-Libraries

This repo contains all the Open-source Libraries from iOS, Android, Flutter and React-Native.✨
170
star
17

react-native-reactions

A React Native animated reaction picker component ✨✨
TypeScript
134
star
18

react-native-radial-slider

React Native component to select or highlight a specific value from a range of values πŸ‘Œ ✨
TypeScript
130
star
19

SSPullToRefresh

SSPullToRefresh makes PullRefresh easy to use, you can provide your own custom animations or set simple gifs on refresh view. The best feature is Lottie animations in refresh view, it uses lottie animations to render high quality animations on pull refresh. πŸŽ‰πŸ’₯
Kotlin
114
star
20

react-native-spinner-button

React Native button component with multiple animated spinners
JavaScript
106
star
21

SSBiometricsAuthentication

Biometric factors allow for secure authentication on the Android platform.
Kotlin
102
star
22

SSComposeShowCaseView

SSComposeShowCaseView is a customizable show case view library in Jetpack compose which allows to showcase/highlight the particular features of the application with an engaging overlay. It also provides automatic showcase view feature with customised delay and opacity attributes. πŸŽ‰πŸ’₯
Kotlin
94
star
23

SSJetpackComposeSwipeableView

SSJetpackComposeSwipeableView is a small library which provides support for the swipeable views. You can use this in your lazyColumns or can add a simple view which contains swipe to edit/delete functionality.
Kotlin
91
star
24

react-native-animation-catalog

A collection of animated React Native components 🌟πŸ”₯
TypeScript
90
star
25

Kotlin-multiplatform-sample

A sample Kotlin Multiplatform project having native UI and shared bussiness logic on Android and iOS platforms.
Kotlin
84
star
26

SSCustomTabMenu

Customisable iOS bottom menu works like Tabbar
Swift
80
star
27

SSAndroidNeumorphicKit

Neomorphic UI kit for Android
Kotlin
72
star
28

SSCustomPullToRefresh

SSCustomPullToRefresh is an open-source library that uses UIKit to add an animation to the pull to refresh view in a UITableView and UICollectionView.
Swift
69
star
29

SSAppUpdater

SSAppUpdater is an open-source framework that compares the current version of the app with the store version and returns the essential details of it like app URL, new app version number, new release note, etc. So you can either redirect or notify the user to update their app.
Swift
67
star
30

SSStepper

SwiftUI package for creating custom stepper with gesture controls and flexible design as per your choice.
Swift
65
star
31

VonageVideoCalling_Android

Vonage Video Calling Android
Kotlin
63
star
32

SSExpandableRecylerView

Expandable Recyclerview makes it easy to integrate nested recycler view...πŸ”¨ πŸ“
Kotlin
59
star
33

SSCustomSideMenu

Side Menu Custom Control for iOS apps
Swift
55
star
34

react-native-skia-catalog

A collection of animated React Native Skia components 🌟
TypeScript
54
star
35

SSSwiftUIGIFView

SSSwiftUIGIFView is a custom controller which helps to load GIF in SwiftUI.
Swift
53
star
36

SSArcSeekBar

Different type of arc seekbar. Easy to use and configure your own seekbar using all the attributes.
Kotlin
52
star
37

SSComposeOTPPinView

A custom OTP view to enter a code usually used in authentication. It includes different types of OTPViews which is easy to use and configure your own view and character of OTP using all the attributes. πŸ“² πŸ”’ ✨
Kotlin
50
star
38

SSPlaceHolderTableView

SSPlaceholderTableView is Placeholder Library for different different state wise placeHolder for UITableView/UICollectionView. Check https://www.cocoacontrols.com/controls/ssplaceholdertableview
Swift
50
star
39

SSFloatingLabelTextField

Swift
44
star
40

SSLineChart

SSLineChart provides you with the additional functionality of gradient color fill which cannot be found in any library specially Watchkit Libraries.
Swift
44
star
41

SSSwiftUISpinnerButton

SSSwiftUISpinnerButton is a collection of various spinning animations for buttons in SwiftUI.
Swift
43
star
42

react-native-tree-selection

A high-performance and lightweight tree selection library for React NativeπŸŽ–
TypeScript
42
star
43

SSNaturalLanguage

Swift
42
star
44

react-native-photos-gallery

A React Native custom animated photo gallery component to open and view photos ✨
TypeScript
41
star
45

react-native-country-code-select

A React Native component that allows users to select a country code ✨ πŸ”₯
TypeScript
41
star
46

Jetpack-compose-sample

Forget about bunch of XML files for maintaining UIs. Jetpack Compose is Android’s modern toolkit for building native UI. Here is a small example to get started.
Kotlin
38
star
47

SSMediaLibrary

Swift
38
star
48

SSVerticalPanoramaImage

Capture stunning vertical panorama images with ease and preview them instantly on the built-in screen.
Swift
37
star
49

SSCircularSlider

A simple, powerful and fully customizable circular slider, written in swift.
Swift
37
star
50

react-native-images-preview

A React Native animated custom image preview component ✨
TypeScript
36
star
51

SSCalendarControl

SSCalendarControl is small and highly customizable calendar control written in swift.
Swift
35
star
52

SSNeumorphicKit

Swift
35
star
53

SSSwiftyGo

Swift
35
star
54

flutter_vonage_video_call_demo

This application provides demo of one to one video call using Vonage Video API. Since there is no office support for flutter from voyage, this demo uses platform channel to communicate with native voyage SDK.
Kotlin
35
star
55

SSMultiSwipeCellKit

Swift
34
star
56

react-native-sticky-table

React Native sticky table component to elevate the app's data presentation and visualization experience ✨
TypeScript
32
star
57

react-native-audio-waveform

React Native component to show audio waveform with ease in react native application ✨
TypeScript
32
star
58

SSSwiper

SSSwiper is used to create swipe gestures action inside any view just by adding a modifier to the View with various customization options
Swift
31
star
59

Fitness-App-ARKit

Fitness App build with ARKit.
Swift
30
star
60

tesseract-OCR-iOS-demo

This prototype is to recognize text inside the image and for that it uses Tesseract OCR. The underlying Tesseract engine will process the picture and return anything that it believes is text.
Swift
30
star
61

SSStoryStatus

SSStoryStatus: Elevate your SwiftUI projects with seamless user list integration and captivating story displays. Empowering developers with effortless integration and complete UI customization, this versatile library makes showcasing stories a breeze.
Swift
28
star
62

SSSwiftUISideMenu

SSSwiftUISideMenu: Your ultimate iOS side menu companion. This customizable and intuitive library facilitates seamless navigation within your app, offering left and right panel support. Effortlessly integrate and personalize UI elements and animation styles to elevate your user experience.
Swift
26
star
63

SSInstaFeedParser

A Flutter package allows you to fetch basic data from a Instagram profile url which is public and verified.
Dart
25
star
64

react-native-graph-kit

Personalized graphs featuring customizable options for React Native app πŸ“ˆ
TypeScript
23
star
65

SSFacebookLogin

The Reusable Facebook Login Components for iOS is the easiest way to get data from Facebook.
Swift
22
star
66

battleship_flutter_flame

Dart
20
star
67

SSSceneFormSdkSample

This is an Augmented Reality Android app that is made by using ARcore and Sceneform SDK. πŸ“Έ πŸŽ‰
Kotlin
18
star
68

Kotlin-Extensions

Library contains common extensions for Android
Kotlin
15
star
69

SSSwiftUILoader

A customisable, simple and elegant loader in SwiftUI.
Swift
15
star
70

SSSwiftUIVideoLayerView

SSSwiftUIVideoPlayerLayer is a custom controller which helps to load video in SwiftUI.
Swift
14
star
71

SSProgressBar

Customizable progressbar
Swift
14
star
72

SSGoogleLogin

The GoogleSigninReusabelComponets for iOS is the easiest way to get data from Google .
Swift
14
star
73

CMPedometerDemo

Let's count steps using CMPedometer
Swift
14
star
74

SSAudioRecorderWithWaveForm

SSAudioRecorderWithWaveForm is recording audio with wave form. πŸŽ‰πŸŽ€
Kotlin
13
star
75

SSCustomCameraControl

Custom camera control
Kotlin
12
star
76

CreateFirebaseDynamicLinks

Swift
10
star
77

ios-commons

added few old helpers (need to updated) as initial version to work on
Swift
9
star
78

SSTwitterLogin

The reusable Twitter login components for iOS is the easiest way to get data from Twitter.
Swift
9
star
79

Workouts-TV-app

Swift
8
star
80

Game-With-AR

Swift
8
star
81

flutter_project_template

Dart
7
star
82

SSLinkedIn

Objective-C
7
star
83

MVVMListDemo

Swift
7
star
84

iOS-BarcodeScan

Objective-C
6
star
85

android-demos

Kotlin
5
star
86

SSSwiftUIVideoPlayerLayer

Swift
4
star
87

react-native-downloader

A audio video file downloader app with foreground and background download support
JavaScript
4
star
88

flutter_ss_placeholder_view

A Flutter package allows you to add placeholder content while loading or empty items.🚧
Dart
4
star
89

NewsApp-RIBs

News app with Listview and Pageview using uber's RIBs Architecture
Swift
3
star
90

SwiftUI-Combine-MVVM

Swift
3
star
91

MVVMDemo

Architecture of iOS Application, Swift
Swift
2
star
92

BiometricReactNative

Biometric authentication with react-native app
JavaScript
2
star
93

Kotlin-CoRoutines

Kotlin
2
star
94

DFPDemo

For showing Ad's , Swift
Swift
2
star
95

QualityCodeSample

Swift
2
star
96

Android_Project_Setup

Kotlin
2
star
97

GoogleLogin

Swift
2
star
98

android_simform_sample_app

The sample app uses Github's GraphQL APIs to query the Simform's Github repositories and list them using compose views in the Android application.
Kotlin
2
star
99

SSNeumorphicSwiftUIKit

1
star
100

react-native-saga-operations

Repository for Redux-saga operations
JavaScript
1
star