-
Notifications
You must be signed in to change notification settings - Fork 24.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
ActivityIndicatorIOS doesn't hide initially in 0.27 #7987
Labels
Good first issue
Interested in collaborating? Take a stab at fixing one of these issues.
Help Wanted
Issues ideal for external contributors.
Platform: iOS
iOS applications.
Resolution: Locked
This issue was locked by the bot.
Comments
Seems related to #7976. |
janicduplessis
added
Good first issue
Interested in collaborating? Take a stab at fixing one of these issues.
Platform: iOS
iOS applications.
Help Wanted
Issues ideal for external contributors.
labels
Jun 13, 2016
It seems like calling |
This was referenced Jun 15, 2016
Can this be closed? |
samerce
pushed a commit
to iodine/react-native
that referenced
this issue
Aug 23, 2016
Summary: I used the reproducible steps as described in origin bug ticket facebook#7987 as test plan. This has the same contents as PR facebook#8130 but then against master per janicduplessis request. Closes facebook#8134 Differential Revision: D3491126 fbshipit-source-id: a22669dc998f82b36fbe31d882d0a29f0912e2ee
mpretty-cyro
pushed a commit
to HomePass/react-native
that referenced
this issue
Aug 25, 2016
Summary: I used the reproducible steps as described in origin bug ticket facebook#7987 as test plan. This has the same contents as PR facebook#8130 but then against master per janicduplessis request. Closes facebook#8134 Differential Revision: D3491126 fbshipit-source-id: a22669dc998f82b36fbe31d882d0a29f0912e2ee
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Labels
Good first issue
Interested in collaborating? Take a stab at fixing one of these issues.
Help Wanted
Issues ideal for external contributors.
Platform: iOS
iOS applications.
Resolution: Locked
This issue was locked by the bot.
There seems to be a bug with
ActivityIndicatorIOS
in the latest stable release.animating={false}
dynamically works as expected (ActivityIndicatorIOS is hidden)animation={false}
as initial prop won't hide it.Reproduce
I assume that HMR is enabled for steps 3-5. Otherwise just use the template below.
<ActivityIndicatorIOS animating={false} />
toindex.ios.js
react-native run-ios
--> Is shown and not animated<ActivityIndicatorIOS animating={true} />
--> Is shown and animated<ActivityIndicatorIOS animating={false} />
--> Is hidden as it shouldTemplate
The text was updated successfully, but these errors were encountered: