Animation lib from Chain Platform (Bros Chain).
npm install @chainplatform/animated
# or
yarn add @chainplatform/animated
import { View } from "react-native";
import { DancingText } from '@chainplatform/animated';
export default function Home() {
return (
<View style={{ flex: 1 }}>
<DancingText
letters={"Chain Platform"}
textStyle={{
fontSize: 14,
fontWeight: "500",
color: "red"
}}
/>
</View>
);
}