Skip to content

IjzerenHein/react-native-firebaseui

 
 

Repository files navigation

react-native-firebaseui

Requirements

We assume you already have firebase sdk installed and configured. We're using this great library: https://github.com/invertase/react-native-firebase

Getting started

$ npm install react-native-firebaseui --save

Mostly automatic installation

$ react-native link react-native-firebaseui

For iOS add the following pod to your podfile:

pod 'SDWebImage', '~> 4.0'

and run pod install.

Android Additional step for PhotoView Library

Add this in your root build.gradle file (usually under android/build.gradle):

allprojects {
  repositories {
    ...
    maven { url "https://jitpack.io" }
  }
}

Manual installation

iOS

  1. In XCode, in the project navigator, right click LibrariesAdd Files to [your project's name]
  2. Go to node_modulesreact-native-firebase-ui and add RNFirebaseUi.xcodeproj
  3. In XCode, in the project navigator, select your project. Add libRNFirebaseUi.a to your project's Build PhasesLink Binary With Libraries
  4. Run your project (Cmd+R)<

Android

  1. Open up android/app/src/main/java/[...]/MainApplication.java
  • Add import io.rumors.reactnativefirebaseui.RNFirebaseUiPackage; to the imports at the top of the file
  • Add new RNFirebaseUiPackage() to the list returned by the getPackages() method
  1. Append the following lines to android/settings.gradle:
    include ':react-native-firebase-ui'
    project(':react-native-firebase-ui').projectDir = new File(rootProject.projectDir, 	'../node_modules/react-native-firebase-ui/android')
    
  2. Insert the following lines inside the dependencies block in android/app/build.gradle:
      compile project(':react-native-firebase-ui')
    

Usage

import { ImageView, PhotoView } from 'react-native-firebaseui'

//no zoom support
export class MyFirebaseImageView extends Component<void, void, void> {
  constructor(props){
    super(props)
  }

  render() {
    let imageProps = this.props

    return (
      <ImageView
        {...imageProps}
        path='firebase/storage/path'
        timestamp={0} //optional, can be used to specify last modified time for same storage path
        resizeMode='cover' //'cover', 'contain', 'stretch'
      />
    )
  }
}

//zoom support (android only). On iOS just wrap the ImageView with a scroll view
export class MyFirebasePhotoView extends Component<void, void, void> {
  constructor(props){
    super(props)
  }

  render() {
    let imageProps = this.props

    return (
      <PhotoView
        {...imageProps}
        path='firebase/storage/path'
        timestamp={0} //optional, can be used to specify last modified time for same storage path
        resizeMode='cover' //'cover', 'contain', 'stretch'
      />
    )
  }
}

About

Firebase UI bindings for react native

Resources

License

Code of conduct

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Objective-C 44.7%
  • Java 33.3%
  • JavaScript 15.5%
  • Python 3.3%
  • Ruby 3.2%