Selaa lähdekoodia

Typo Fix (#1305)

Fix in android specific use case
JackThomson2 7 vuotta sitten
vanhempi
commit
6c5e15b711
1 muutettua tiedostoa jossa 1 lisäystä ja 1 poistoa
  1. 1
    1
      docs/android-specific-use-cases.md

+ 1
- 1
docs/android-specific-use-cases.md Näytä tiedosto

302
 ### Screen animation
302
 ### Screen animation
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.
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
 ## Reloading from terminal
307
 ## Reloading from terminal
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.
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.