{"id":15141867,"url":"https://github.com/nathanwalker/ios18-examples","last_synced_at":"2025-10-11T10:32:42.593Z","repository":{"id":244733214,"uuid":"816097480","full_name":"NathanWalker/ios18-examples","owner":"NathanWalker","description":"iOS 18 Highlights with NativeScript","archived":false,"fork":false,"pushed_at":"2024-06-22T06:04:24.000Z","size":18870,"stargazers_count":13,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-09-05T04:39:14.799Z","etag":null,"topics":["ios","nativescript","swiftui","typescript","wwdc24"],"latest_commit_sha":null,"homepage":"https://x.com/NativeScript/status/1801294284068687877","language":"Swift","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/NathanWalker.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.txt","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2024-06-17T03:16:12.000Z","updated_at":"2025-05-11T11:28:40.000Z","dependencies_parsed_at":"2024-06-22T16:46:43.167Z","dependency_job_id":"04370408-7344-4913-97b7-be817586aeef","html_url":"https://github.com/NathanWalker/ios18-examples","commit_stats":{"total_commits":7,"total_committers":1,"mean_commits":7.0,"dds":0.0,"last_synced_commit":"93d9b44368c9c0c96efab03327b91311eff37477"},"previous_names":["nathanwalker/ios18-examples"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/NathanWalker/ios18-examples","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/NathanWalker%2Fios18-examples","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/NathanWalker%2Fios18-examples/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/NathanWalker%2Fios18-examples/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/NathanWalker%2Fios18-examples/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/NathanWalker","download_url":"https://codeload.github.com/NathanWalker/ios18-examples/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/NathanWalker%2Fios18-examples/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":279006846,"owners_count":26084206,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-10-11T02:00:06.511Z","response_time":55,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["ios","nativescript","swiftui","typescript","wwdc24"],"created_at":"2024-09-26T09:03:16.639Z","updated_at":"2025-10-11T10:32:42.571Z","avatar_url":"https://github.com/NathanWalker.png","language":"Swift","funding_links":[],"categories":[],"sub_categories":[],"readme":"## iOS 18 Highlights with NativeScript\n\nRequires Xcode 16 Beta with iOS 18 simulator.\n\nhttps://github.com/NathanWalker/ios18-examples/assets/457187/6b7862cb-cb25-401e-a39e-d62f3c4640e3\n\nhttps://github.com/NathanWalker/ios18-examples/assets/457187/4b859090-e684-4718-97d5-e4b96ac41a7b\n\n### Metal + SwiftUI\n\nExample from WWDC24 10151:\nhttps://developer.apple.com/videos/play/wwdc2024/10151/\n\n#### Try with HMR (Hot Module Replacement):\n\nAdjust `app-routing.module` from:\n\n```ts\n{ path: '', redirectTo: '/items', pathMatch: 'full' },\n```\n\nto:\n\n```ts\n{ path: '', redirectTo: '/metal', pathMatch: 'full' },\n```\n\nRun with: `ns debug ios`\n\nTry changing `imageSrc` to different included assets in `App_Resources/iOS/Assets.xcassets` such as:\n`Lily Pads`, `Fish`, `Succulent`, `palm_tree`.\n\n```html\n\u003cSwiftUI\n    swiftId=\"rippleView\"\n    [data]=\"{ imageSrc: 'Lily Pads' }\"\n```\n\n#### Try without HMR:\n\n```bash\nns debug ios --no-hmr\n```\n\n### SF Symbols 6\n\nhttps://developer.apple.com/sf-symbols/\n\n#### Try with HMR (Hot Module Replacement):\n\nAdjust `app-routing.module` from:\n\n```ts\n{ path: '', redirectTo: '/items', pathMatch: 'full' },\n```\n\nto:\n\n```ts\n{ path: '', redirectTo: '/sf-symbols', pathMatch: 'full' },\n```\n\nNow run with: `ns debug ios`\n\n#### Try without HMR:\n\n```bash\nns debug ios --no-hmr\n```\n\n### Font weight animation\n\nhttps://x.com/MengTo/status/1802651973344456822\n\n#### Try with HMR (Hot Module Replacement):\n\nAdjust `app-routing.module` from:\n\n```ts\n{ path: '', redirectTo: '/items', pathMatch: 'full' },\n```\n\nto:\n\n```ts\n{ path: '', redirectTo: '/animated-text', pathMatch: 'full' },\n```\n\nNow run with: `ns debug ios`\n\n#### Try without HMR:\n\n```bash\nns debug ios --no-hmr\n```\n\n### Siri Animation\n\nhttps://x.com/MengTo/status/1802895763334422643\n\n#### Try with HMR (Hot Module Replacement):\n\nAdjust `app-routing.module` from:\n\n```ts\n{ path: '', redirectTo: '/items', pathMatch: 'full' },\n```\n\nto:\n\n```ts\n{ path: '', redirectTo: '/siri', pathMatch: 'full' },\n```\n\nNow run with: `ns debug ios`\n\n#### Try without HMR:\n\n```bash\nns debug ios --no-hmr\n```\n\n### Scroll Transitions (Parallax Effect)\n\nhttps://developer.apple.com/videos/play/wwdc2024/10151/\n\n#### Try with HMR (Hot Module Replacement):\n\nAdjust `app-routing.module` from:\n\n```ts\n{ path: '', redirectTo: '/items', pathMatch: 'full' },\n```\n\nto:\n\n```ts\n{ path: '', redirectTo: '/parallax', pathMatch: 'full' },\n```\n\nNow run with: `ns debug ios`\n\n#### Try without HMR:\n\n```bash\nns debug ios --no-hmr\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnathanwalker%2Fios18-examples","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fnathanwalker%2Fios18-examples","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnathanwalker%2Fios18-examples/lists"}