jsinspect-plus
Version:
Detect copy-pasted and structurally similar code. Supports ES2020 standard (and most proposed features), TS and TSX files. Using Babel 8's parser.
20 lines (18 loc) • 612 B
JavaScript
<View>
<Animatable.View ref='content' animation='fadeInUp' duration={2000} ease='ease-in'>
<LinearGradient
start={{x: 0.0, y: 0.0}} end={{x: 0.0, y: 1.0}}
locations={[0, 1]}
colors={['#074595', '#6589A4']}
style={Styles.signInContainer}>
</LinearGradient>
</Animatable.View>
<Animatable.View ref='container' style={Styles.container} easing='ease-in'>
<LinearGradient
start={{x: 0.0, y: 0.0}} end={{x: 0.0, y: 1.0}}
locations={[0, 1]}
colors={['#074595', '#6589A4']}
style={Styles.blurOverlay}>
</LinearGradient>
</Animatable.View>
</View>