1.0.2 • Published 2 years ago

react-native-typing-it-self v1.0.2

Weekly downloads
-
License
MIT
Repository
-
Last release
2 years ago

react-native-typing-it-self

This library create a auto typing text for your react native app with configurable options.

Examples

Basic auto typing text

render() {
    return (
        <TypingItSelf text="hello world!" start={awaiter}/>
    );
}

Example with semaphore for start after do some job

// awaiter is holding indication to wait until signal to start typing
const {awaiter, resume} = newTypingSemaphore();
render() {
    return (
        <TypingItSelf text="hello world!" start={awaiter}/>
    );
}

// start typing function
resume();