octicon-git-branch(16/) Commit Graph

6 Commits

Author SHA1 Message Date
Nathan Walker
9541b1b68c fix(embed): use factory only when it's available (#10579)
When embedding via 'ns embed ios', the .swift symbols may not be available and are not needed. This can be revisited in the future with project settings for embedded projects.
2024-07-09 14:40:40 -07:00 octicon-file-diff(16/) octicon-file-code(16/)
Nathan Walker
01d537bf15 feat(visionos): ui-mobile-base supporting xros plus improvements to window handling (#10478) 2024-04-05 17:07:16 -07:00 octicon-file-diff(16/) octicon-file-code(16/)
kefahB
3a0afdb9cc feat(SegmentedBar): selectedTextColor added and selectedBackgroundColor improvements (#10474) 2024-01-19 10:39:59 -08:00 octicon-file-diff(16/) octicon-file-code(16/)
Dimitris-Rafail Katsampas
39eed526c1 feat(ios): improved shadow handling with background UI rework (#10374)
BREAKING CHANGES: 

`CSSShadow` was renamed into `ShadowCSSValues`
2023-09-06 08:17:29 -07:00 octicon-file-diff(16/) octicon-file-code(16/)
Nathan Walker
0956cb0f91 fix(shared-transitions): layer opacity set back to original on next tick (#10310) 2023-06-12 20:44:15 -07:00 octicon-file-diff(16/) octicon-file-code(16/)
Igor Randjelovic
f64355ba7a refactor: improved core barrel exports and Application class (#10286)
BREAKING CHANGES:

`Application.orientation` is no longer a function.

Migration: Remove `()` from the `Application.orientation()` call:
```diff
import { Application } from "@nativescript/core";

-console.log(Application.orientation());
+console.log(Application.orientation);
```


`Application.systemAppearance` is no longer a function.

Migration: Remove `()` from the `Application.systemAppearance()` call:
```diff
import { Application } from "@nativescript/core";

-console.log(Application.systemAppearance());
+console.log(Application.systemAppearance);
```
2023-05-25 07:45:39 -07:00 octicon-file-diff(16/) octicon-file-code(16/)