Check out example codes for "swift animate a label ishidden". It will help you in understanding the concepts better.
Code Example 1
DispatchQueue.main.async {
UIView.transition(with: myLabel, duration: 0.6,
options: .transitionCrossDissolve,
animations: {
myLabel.isHidden = false
})
}
Learn ReactJs, React Native from akashmittal.com