Search or jump to... Search code, repositories, users, issues, pull requests... Provide feedback We read every piece of feedback, and take your input very seriously. Include my email address so I can be contacted Cancel Submit feedback Saved searches Use saved searches to filter your...
66 + // Do not run animation on very first rendering 67 + if (isFirstRendering.current) { 68 + isFirstRendering.current = false 69 + return 70 + } 71 + 72 + Animated.timing(scaleAnim, { 73 + toValue: checked ? 1 : 0, 74 + duration: ANIMATION_DURATION, 75 ...
28 28 target 'LxMusicMobile' do 29 29 config = use_native_modules! 30 30 31 - # Flags change depending on the env values. 32 - flags = get_default_flags() 33 - 34 31 use_react_native!( 35 32 :path => config[:reactNativePath], 36 - # Hermes is now enabled by...