René's URL Explorer Experiment


Title: Animation of transition rotate not working · Issue #10764 · NativeScript/NativeScript · GitHub

Open Graph Title: Animation of transition rotate not working · Issue #10764 · NativeScript/NativeScript

X Title: Animation of transition rotate not working · Issue #10764 · NativeScript/NativeScript

Description: Issue Description Animation of transition rotate does not work on iOS, when using NativeScript >= 8.9.0. This happens when using css keyframe animation or when using the Animation class. We are only developing for iOS, I do not know if t...

Open Graph Description: Issue Description Animation of transition rotate does not work on iOS, when using NativeScript >= 8.9.0. This happens when using css keyframe animation or when using the Animation class. We are onl...

X Description: Issue Description Animation of transition rotate does not work on iOS, when using NativeScript >= 8.9.0. This happens when using css keyframe animation or when using the Animation class. We are ...

Opengraph URL: https://github.com/NativeScript/NativeScript/issues/10764

X: @github

direct link

Domain: github.com


Hey, it has json ld scripts:
{"@context":"https://schema.org","@type":"DiscussionForumPosting","headline":"Animation of transition rotate not working","articleBody":"### Issue Description\n\nAnimation of transition rotate does not work on iOS, when using NativeScript \u003e= 8.9.0.\nThis happens when using css keyframe animation or when using the Animation class.\nWe are only developing for iOS, I do not know if this is an issue on Android.\nAnimating other properties works as expected.\n\nAlso fails on latest pre-release: 8.9.3-next-07-11-2025-16231435223\n\nLowering @nativescript/core to 8.8.6 fixes the problem.\n\nThank You to anyone who can look into this and save our spinny.\n\n### Reproduction\n\nThis works:\n```scss\n@keyframes move {\n  from {\n    transform: translate(0, 0);\n  }\n  to {\n    transform: translate(100, 100);\n  }\n}\n\n.move {\n  animation: move 2s linear infinite forwards;\n}\n```\n\nThis fails (nothing happens):\n\n```scss\n@keyframes spin {\n  from {\n    transform: rotate(0deg);\n  }\n  to {\n    transform: rotate(359deg);\n  }\n}\n\n.spin {\n  animation: spin 2s linear infinite forwards;\n}\n```\n\nAs mentioned above, this also fails (nothing happens), but animating other properties work:\n```\nconst spinAnimation = new Animation([{\n  target: this.iconEl.nativeElement,\n  rotate: 359,\n  duration: 2000,\n  iterations: Number.POSITIVE_INFINITY,\n  curve: CoreTypes.AnimationCurve.linear\n}]);\n\nspinAnimation.play();\n```\n\n### Relevant log output (if applicable)\n\n```shell\n\n```\n\n### Environment\n\n```yaml\nOS: macOS 15.5\nCPU: (8) arm64 Apple M2\nShell: /opt/homebrew/bin/zsh\nnode: 22.13.1\nnpm: 11.0.0\nnativescript: 8.9.2\n\n# android\njava: Not Found\nndk: Not Found\napis: Not Found\nbuild_tools: Not Found\nsystem_images: Not Found\n\n# ios\nxcode: 16.3/16E140\ncocoapods: 1.14.3\npython: 3.10.18\npython3: 3.10.18\nruby: 3.2.2\nplatforms:\n  - DriverKit 24.4\n  - iOS 18.4\n  - macOS 15.4\n  - tvOS 18.4\n  - visionOS 2.4\n  - watchOS 11.4\n```\n\n### Dependencies\n\n```json\n\"dependencies\": {\n  \"@angular/animations\": \"~20.1.0\",\n  \"@angular/common\": \"~20.1.0\",\n  \"@angular/compiler\": \"~20.1.0\",\n  \"@angular/core\": \"~20.1.0\",\n  \"@angular/forms\": \"~20.1.0\",\n  \"@angular/platform-browser\": \"~20.1.0\",\n  \"@angular/platform-browser-dynamic\": \"~20.1.0\",\n  \"@angular/router\": \"~20.1.0\",\n  \"@nativescript-community/drawingpad\": \"^4.1.0\",\n  \"@nativescript-community/sentry\": \"~4.6.40\",\n  \"@nativescript-community/ui-label\": \"^1.3.33\",\n  \"@nativescript/angular\": \"20.0.0\",\n  \"@nativescript/background-http\": \"^6.0.2\",\n  \"@nativescript/camera\": \"^7.0.0\",\n  \"@nativescript/core\": \"8.9.2\",\n  \"@nativescript/directions\": \"^2.0.2\",\n  \"@nativescript/email\": \"^2.1.0\",\n  \"@nativescript/firebase\": \"^11.1.3\",\n  \"@nativescript/iqkeyboardmanager\": \"^2.1.2\",\n  \"@nativescript/pdf\": \"^2.0.0\",\n  \"@nativescript/theme\": \"~3.1.0\",\n  \"@nativescript/unit-test-runner\": \"^3.0.4\",\n  \"base-64\": \"^1.0.0\",\n  \"jwt-decode\": \"^4.0.0\",\n  \"nativescript-extendedinfo\": \"^1.0.11\",\n  \"nativescript-numeric-keyboard\": \"^5.0.2\",\n  \"nativescript-phone\": \"^3.0.3\",\n  \"nativescript-sqlite\": \"^2.8.6\",\n  \"nativescript-taptic-engine\": \"^2.1.0\",\n  \"nativescript-ui-listview\": \"^15.2.3\",\n  \"nativescript-ui-sidedrawer\": \"^15.2.3\",\n  \"rxjs\": \"^7.8.2\",\n  \"zone.js\": \"~0.15.1\"\n},\n\"devDependencies\": {\n  \"@angular-devkit/build-angular\": \"~20.1.0\",\n  \"@angular/compiler-cli\": \"~20.1.0\",\n  \"@nativescript/ios\": \"8.9.2\",\n  \"@nativescript/types\": \"~8.9.1\",\n  \"@nativescript/webpack\": \"~5.0.24\",\n  \"@ngtools/webpack\": \"~20.1.0\",\n  \"@sentry/webpack-plugin\": \"^3.5.0\",\n  \"@types/jasmine\": \"5.1.8\",\n  \"copy-webpack-plugin\": \"^13.0.0\",\n  \"fs-extra\": \"^11.3.0\",\n  \"karma\": \"6.4.4\",\n  \"karma-jasmine\": \"5.1.0\",\n  \"karma-mocha-reporter\": \"^2.2.5\",\n  \"karma-nativescript-launcher\": \"1.0.0\",\n  \"karma-spec-reporter\": \"^0.0.36\",\n  \"typescript\": \"~5.8.3\"\n}\n```\n\n### Please accept these terms\n\n- [x] I have searched the [existing issues](https://github.com/NativeScript/NativeScript/issues) as well as [StackOverflow](https://stackoverflow.com/questions/tagged/nativescript) and this has not been posted before\n- [x] This is a bug report\n- [x] I agree to follow this project's [Code of Conduct](https://github.com/NativeScript/NativeScript/blob/master/tools/notes/CONTRIBUTING.md#coc)","author":{"url":"https://github.com/jpakulski","@type":"Person","name":"jpakulski"},"datePublished":"2025-07-14T06:44:38.000Z","interactionStatistic":{"@type":"InteractionCounter","interactionType":"https://schema.org/CommentAction","userInteractionCount":2},"url":"https://github.com/10764/NativeScript/issues/10764"}

route-pattern/_view_fragments/issues/show/:user_id/:repository/:id/issue_layout(.:format)
route-controllervoltron_issues_fragments
route-actionissue_layout
fetch-noncev2:528b2a38-3e9e-7d75-7aed-2b36264c56e7
current-catalog-service-hash81bb79d38c15960b92d99bca9288a9108c7a47b18f2423d0f6438c5b7bcd2114
request-idDFCA:2B4B1:35BB1DE:4B95501:6A5F8A42
html-safe-nonce0403dde37e2706160a401b3d5f96872105c285e88608f92d96fc046f81893fff
visitor-payloadeyJyZWZlcnJlciI6IiIsInJlcXVlc3RfaWQiOiJERkNBOjJCNEIxOjM1QkIxREU6NEI5NTUwMTo2QTVGOEE0MiIsInZpc2l0b3JfaWQiOiI2NzcyMzY3MjAwNzY5NTA5OTU0IiwicmVnaW9uX2VkZ2UiOiJpYWQiLCJyZWdpb25fcmVuZGVyIjoiaWFkIn0=
visitor-hmac2be21bb9324e967bf74f9a7ee01d3b59c4a8f46de7a2aee278e0a00c7941dd4b
hovercard-subject-tagissue:3227569229
github-keyboard-shortcutsrepository,issues,copilot
google-site-verificationApib7-x98H0j5cPqHWwSMm6dNU4GmODRoqxLiDzdx9I
octolytics-urlhttps://collector.github.com/github/collect
analytics-location///voltron/issues_fragments/issue_layout
fb:app_id1401488693436528
apple-itunes-appapp-id=1477376905, app-argument=https://github.com/_view_fragments/issues/show/NativeScript/NativeScript/10764/issue_layout
twitter:imagehttps://opengraph.githubassets.com/691ebffaa28101c24fb0dd85cd4831580d9e3ce02d4b741f5250b08d0997157d/NativeScript/NativeScript/issues/10764
twitter:cardsummary_large_image
og:imagehttps://opengraph.githubassets.com/691ebffaa28101c24fb0dd85cd4831580d9e3ce02d4b741f5250b08d0997157d/NativeScript/NativeScript/issues/10764
og:image:altIssue Description Animation of transition rotate does not work on iOS, when using NativeScript >= 8.9.0. This happens when using css keyframe animation or when using the Animation class. We are onl...
og:image:width1200
og:image:height600
og:site_nameGitHub
og:typeobject
og:author:usernamejpakulski
hostnamegithub.com
expected-hostnamegithub.com
None05a5a04783bf869edc9d6ffbeac22f1152a11abce708ff1bf649457a9b96836a
turbo-cache-controlno-preview
go-importgithub.com/NativeScript/NativeScript git https://github.com/NativeScript/NativeScript.git
octolytics-dimension-user_id7392261
octolytics-dimension-user_loginNativeScript
octolytics-dimension-repository_id31492490
octolytics-dimension-repository_nwoNativeScript/NativeScript
octolytics-dimension-repository_publictrue
octolytics-dimension-repository_is_forkfalse
octolytics-dimension-repository_network_root_id31492490
octolytics-dimension-repository_network_root_nwoNativeScript/NativeScript
turbo-body-classeslogged-out env-production page-responsive
disable-turbofalse
browser-stats-urlhttps://api.github.com/_private/browser/stats
browser-errors-urlhttps://api.github.com/_private/browser/errors
releaseebe18dcab12b14d87b778dc32f6b70e7a6910911
ui-targetfull
theme-color#1e2327
color-schemelight dark

Links:

Skip to contenthttps://github.com/NativeScript/NativeScript/issues/10764#start-of-content
https://github.com/
Sign in https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2FNativeScript%2FNativeScript%2Fissues%2F10764
GitHub CopilotWrite better code with AIhttps://github.com/features/copilot
GitHub Copilot appDirect agents from issue to mergehttps://github.com/features/ai/github-app
MCP RegistryNewIntegrate external toolshttps://github.com/mcp
ActionsAutomate any workflowhttps://github.com/features/actions
CodespacesInstant dev environmentshttps://github.com/features/codespaces
IssuesPlan and track workhttps://github.com/features/issues
Code ReviewManage code changeshttps://github.com/features/code-review
Code QualityEnforce quality at mergehttps://github.com/features/code-quality
GitHub Advanced SecurityFind and fix vulnerabilitieshttps://github.com/security/advanced-security
Code securitySecure your code as you buildhttps://github.com/security/advanced-security/code-security
Secret protectionStop leaks before they starthttps://github.com/security/advanced-security/secret-protection
Why GitHubhttps://github.com/why-github
Documentationhttps://docs.github.com
Bloghttps://github.blog
Changeloghttps://github.blog/changelog
Marketplacehttps://github.com/marketplace
View all featureshttps://github.com/features
Enterpriseshttps://github.com/enterprise
Small and medium teamshttps://github.com/team
Startupshttps://github.com/enterprise/startups
Nonprofitshttps://github.com/solutions/industry/nonprofits
App Modernizationhttps://github.com/solutions/use-case/app-modernization
DevSecOpshttps://github.com/solutions/use-case/devsecops
DevOpshttps://github.com/solutions/use-case/devops
CI/CDhttps://github.com/solutions/use-case/ci-cd
View all use caseshttps://github.com/solutions/use-case
Healthcarehttps://github.com/solutions/industry/healthcare
Financial serviceshttps://github.com/solutions/industry/financial-services
Manufacturinghttps://github.com/solutions/industry/manufacturing
Governmenthttps://github.com/solutions/industry/government
View all industrieshttps://github.com/solutions/industry
View all solutionshttps://github.com/solutions
AIhttps://github.com/resources/articles?topic=ai
Software Developmenthttps://github.com/resources/articles?topic=software-development
DevOpshttps://github.com/resources/articles?topic=devops
Securityhttps://github.com/resources/articles?topic=security
View all topicshttps://github.com/resources/articles
Customer storieshttps://github.com/customer-stories
Events & webinarshttps://github.com/resources/events
Ebooks & reportshttps://github.com/resources/whitepapers
Business insightshttps://github.com/solutions/executive-insights
GitHub Skillshttps://skills.github.com
Documentationhttps://docs.github.com
Customer supporthttps://support.github.com
Community forumhttps://github.com/orgs/community/discussions
Trust centerhttps://github.com/trust-center
Partnershttps://github.com/partners
View all resourceshttps://github.com/resources
GitHub SponsorsFund open source developershttps://github.com/open-source/sponsors
Security Labhttps://securitylab.github.com
Maintainer Communityhttps://maintainers.github.com
Acceleratorhttps://github.com/open-source/accelerator
GitHub Starshttps://stars.github.com
Archive Programhttps://archiveprogram.github.com
Topicshttps://github.com/topics
Trendinghttps://github.com/trending
Collectionshttps://github.com/collections
Enterprise platformAI-powered developer platformhttps://github.com/enterprise
GitHub Advanced SecurityEnterprise-grade security featureshttps://github.com/security/advanced-security
Copilot for BusinessEnterprise-grade AI featureshttps://github.com/features/copilot/copilot-business
Premium SupportEnterprise-grade 24/7 supporthttps://github.com/enterprise/premium-support
Pricinghttps://github.com/pricing
Search syntax tipshttps://docs.github.com/search-github/github-code-search/understanding-github-code-search-syntax
documentationhttps://docs.github.com/search-github/github-code-search/understanding-github-code-search-syntax
Sign in https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2FNativeScript%2FNativeScript%2Fissues%2F10764
Sign up https://github.com/signup?ref_cta=Sign+up&ref_loc=header+logged+out&ref_page=%2F%3Cuser-name%3E%2F%3Crepo-name%3E%2Fvoltron%2Fissues_fragments%2Fissue_layout&source=header-repo&source_repo=NativeScript%2FNativeScript
Reloadhttps://github.com/NativeScript/NativeScript/issues/10764
Reloadhttps://github.com/NativeScript/NativeScript/issues/10764
Reloadhttps://github.com/NativeScript/NativeScript/issues/10764
Please reload this pagehttps://github.com/NativeScript/NativeScript/issues/10764
NativeScript https://github.com/NativeScript
NativeScripthttps://github.com/NativeScript/NativeScript
Please reload this pagehttps://github.com/NativeScript/NativeScript/issues/10764
Notifications https://github.com/login?return_to=%2FNativeScript%2FNativeScript
Fork 1.7k https://github.com/login?return_to=%2FNativeScript%2FNativeScript
Star 25.6k https://github.com/login?return_to=%2FNativeScript%2FNativeScript
Code https://github.com/NativeScript/NativeScript
Issues 771 https://github.com/NativeScript/NativeScript/issues
Pull requests 66 https://github.com/NativeScript/NativeScript/pulls
Discussions https://github.com/NativeScript/NativeScript/discussions
Actions https://github.com/NativeScript/NativeScript/actions
Projects https://github.com/NativeScript/NativeScript/projects
Wiki https://github.com/NativeScript/NativeScript/wiki
Security and quality 0 https://github.com/NativeScript/NativeScript/security
Insights https://github.com/NativeScript/NativeScript/pulse
Code https://github.com/NativeScript/NativeScript
Issues https://github.com/NativeScript/NativeScript/issues
Pull requests https://github.com/NativeScript/NativeScript/pulls
Discussions https://github.com/NativeScript/NativeScript/discussions
Actions https://github.com/NativeScript/NativeScript/actions
Projects https://github.com/NativeScript/NativeScript/projects
Wiki https://github.com/NativeScript/NativeScript/wiki
Security and quality https://github.com/NativeScript/NativeScript/security
Insights https://github.com/NativeScript/NativeScript/pulse
#10765https://github.com/NativeScript/NativeScript/pull/10765
Animation of transition rotate not workinghttps://github.com/NativeScript/NativeScript/issues/10764#top
#10765https://github.com/NativeScript/NativeScript/pull/10765
https://github.com/CatchABus
bughttps://github.com/NativeScript/NativeScript/issues?q=state%3Aopen%20label%3A%22bug%22
https://github.com/jpakulski
jpakulskihttps://github.com/jpakulski
on Jul 14, 2025https://github.com/NativeScript/NativeScript/issues/10764#issue-3227569229
existing issueshttps://github.com/NativeScript/NativeScript/issues
StackOverflowhttps://stackoverflow.com/questions/tagged/nativescript
Code of Conducthttps://github.com/NativeScript/NativeScript/blob/master/tools/notes/CONTRIBUTING.md#coc
CatchABushttps://github.com/CatchABus
bughttps://github.com/NativeScript/NativeScript/issues?q=state%3Aopen%20label%3A%22bug%22
https://github.com
Termshttps://docs.github.com/site-policy/github-terms/github-terms-of-service
Privacyhttps://docs.github.com/site-policy/privacy-policies/github-privacy-statement
Securityhttps://github.com/security
Statushttps://www.githubstatus.com/
Communityhttps://github.community/
Docshttps://docs.github.com/
Contacthttps://support.github.com?tags=dotcom-footer

Viewport: width=device-width


URLs of crawlers that visited me.