react-native-simple-marquee
v1.0.2
Published
React Native Marquee Text Component
Downloads
46
Maintainers
Readme
react-native-simple-marquee
A simple and customizable marquee component for React Native.
Installation
npm install react-native-simple-marquee
Usage
import MarqueeText from 'react-native-simple-marquee';
const App = () => {
return (
<MarqueeText direction="left" speed={100} loop={true} space={10}>
Hello, world!
</MarqueeText>
);
};