Typing animation library for React Native
npm install react-native-typewriter-effectTyping animation library for React Native.
!Demo
``sh`
npm install react-native-typewriter-effect
`tsx
import TypeWriterEffect from 'react-native-typewriter-effect';
export default function App() {
return (
);
}
`
type: string
Required. The text to be typed.
type: number
The maximum delay between each character.
type: number
The minimum delay between each character.
type: (char: string, index: number) => void
Callback function that is called when a character is typed.
type: () => void
Callback function that is called when the typing ends.
type: StyleProp
The style of the text.
type: boolean
Android only. Whether to vibrate when a character is typed.
type: boolean`
Whether to use backspace effect.
See the contributing guide to learn how to contribute to the repository and the development workflow.
MIT
---
Made with create-react-native-library