Sfoglia il codice sorgente

Typo Fix (#1305)

Fix in android specific use case
JackThomson2 7 anni fa
parent
commit
6c5e15b711
1 ha cambiato i file con 1 aggiunte e 1 eliminazioni
  1. 1
    1
      docs/android-specific-use-cases.md

+ 1
- 1
docs/android-specific-use-cases.md Vedi File

@@ -302,7 +302,7 @@ specify the rate of change of a parameter over time
302 302
 ### Screen animation
303 303
 When Shared Element Transition is used, a cross-fade transition is used between the entering and exiting screens. Make sure the root `View` has a background color in order for the cross-fade animation to be visible.
304 304
 
305
-To disable the corss-fade animation, set `animated: false` when pushing the second screen. Disabling this animation is useful if you'd like to animate the reset of the elements on screen your self.
305
+To disable the cross-fade animation, set `animated: false` when pushing the second screen. Disabling this animation is useful if you'd like to animate the reset of the elements on screen your self.
306 306
 
307 307
 ## Reloading from terminal
308 308
 You can easily reload your app from terminal using `adb shell am broadcast -a react.native.RELOAD`. This is particularly useful when debugging on device.