react-native: 0.37.0
react-native-linear-gradient: 1.6.0

I don't know where or why its happen, thanks for your support!
Syntax changed for start & end props.
Instead of
start={[0, 0]} end={[1, 0]}
Try
start={{x: 0, y: 0}} end={{x: 1, y: 0}}
@HeinZawHtet Thanks!
Most helpful comment
Syntax changed for start & end props.
Instead of
start={[0, 0]} end={[1, 0]}Try
start={{x: 0, y: 0}} end={{x: 1, y: 0}}