1.0.2 • Published 9 months ago
react-native-simple-marquee v1.0.2
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>
);
};