#React native Splash screen

3 messages · Page 1 of 1 (latest)

ebon barnBOT
#

Thanks for your question :clap:, if someone gives you an answer it would be great if you thanked them with a :white_check_mark: in response. This response will earn you both points for special roles on this server.
React native Splash screen

void veldt
#

Yes I can help by text limits

#

`import React, { useEffect, useRef } from 'react';
import {
View,
Text,
StyleSheet,
Animated,
Dimensions,
StatusBar,
} from 'react-native';
import Svg, {
Circle,
Path,
Defs,
LinearGradient,
Stop,
G,
} from 'react-native-svg';

const { width, height } = Dimensions.get('window');

const AnimatedCircle = Animated.createAnimatedComponent(Circle);
const AnimatedPath = Animated.createAnimatedComponent(Path);

const RING_CIRCUMFERENCE = 2 * Math.PI * 35;
const ARC1_LENGTH = 120;
const ARC2_LENGTH = 90;`