ngothanhtai / react-native-auto-typing-text

Auto typing text component for react-native

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

react-native-auto-typing-text

Auto typing text component.

Demo

Demo

Installation

npm install --save react-native-auto-typing-text

Usage

import AutoTypingText from 'react-native-auto-typing-text';

<AutoTypingText
  text={`có căn nhà nằm nghe nắng mưa`}
  charMovingTime={80}
  delay={0}
  style={{
    position: 'absolute',
    width: 300,
    fontSize: 30,
    color: 'rgba(0,0,0,0.7)',
    backgroundColor: 'rgba(0,0,0,0)',
    margin: 20,
    top: 240,
    left: 0,
  }}
  onComplete={() => { console.log('done'); }}
/>

Properties

Prop Type Description
text string Text to type
charMovingTime number time to type each character
delay number Delay time before typing
style string Style for text
onComplete func is called when typing completed

About

Auto typing text component for react-native

License:MIT License


Languages

Language:JavaScript 45.1%Language:Objective-C 32.5%Language:Python 12.7%Language:Java 9.7%