react-native-justify

0.0.1 • Public • Published

react-native-justified-text

Getting started

$ npm install react-native-justify --save

Mostly automatic installation

$ react-native link react-native-justify

Manual installation

Android

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

iOS

iOS supports justify by default

Usage

import Justify from 'react-native-justify';
 
<Justify
  text="The text to justify"
  color="#ff0000"
  fontFamily="myFont.ttf"
  fontSize={16}
  lineHeightMultiplicator={2}
  style={{height: 200}}
/>;

Height must be set explicitly to see the component. Font family must be in "android/app/src/main/assets/fonts" folder.

Package Sidebar

Install

npm i react-native-justify

Weekly Downloads

1

Version

0.0.1

License

MIT

Unpacked Size

7.4 kB

Total Files

8

Last publish

Collaborators

  • hadimostafapour