ggtmtmgg / react-native-black-button

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

react-native-black-button

Getting started

$ npm install react-native-black-button --save

Mostly automatic installation

$ react-native link react-native-black-button

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-black-button and add RNBlackButton.xcodeproj
  3. In XCode, in the project navigator, select your project. Add libRNBlackButton.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/[...]/MainActivity.java
  • Add import com.reactlibrary.RNBlackButtonPackage; to the imports at the top of the file
  • Add new RNBlackButtonPackage() to the list returned by the getPackages() method
  1. Append the following lines to android/settings.gradle:
    include ':react-native-black-button'
    project(':react-native-black-button').projectDir = new File(rootProject.projectDir, 	'../node_modules/react-native-black-button/android')
    
  2. Insert the following lines inside the dependencies block in android/app/build.gradle:
      compile project(':react-native-black-button')
    

Windows

Read it! :D

  1. In Visual Studio add the RNBlackButton.sln in node_modules/react-native-black-button/windows/RNBlackButton.sln folder to their solution, reference from their app.
  2. Open up your MainPage.cs app
  • Add using Black.Button.RNBlackButton; to the usings at the top of the file
  • Add new RNBlackButtonPackage() to the List<IReactPackage> returned by the Packages method

Usage

import RNBlackButton from 'react-native-black-button';

// TODO: What to do with the module?
RNBlackButton;

About


Languages

Language:Objective-C 28.7%Language:C# 24.5%Language:Java 20.1%Language:Python 11.7%Language:JavaScript 10.7%Language:Ruby 4.3%