e52d13bfcf
feat(image): ios system icons styling by font-size and font-weight ( #10706 )
2025-02-21 15:09:34 -08:00
a883a79e3b
fix(core): provided image source can be unintentionally disposed ( #10654 )
2025-01-12 18:12:06 -08:00
80f3ff2042
feat(ios): SF Symbol scale support via iosSymbolScale ( #10569 )
2024-07-02 16:26:40 -07:00
d678915234
feat(core): add sys://
support for SF Symbol usage on images with effects ( #10555 )
2024-06-26 15:34:24 -07:00
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
75eefa669d
feat(android): support drawable in ImageSource ( #10098 )
...
This allows passing a drawable as another source option
2022-11-19 23:13:33 -08:00
e8bed44f5b
fix(android): font icons had incorrect fallback size ( #9914 )
2022-07-09 09:02:45 -07:00
d3718e5e5f
fix: incorrect font icon size conversion to device pixels. ( #9910 )
2022-07-09 09:02:45 -07:00
3cf5833423
chore: cleanup image handling
2022-03-01 12:32:39 -08:00
9d3977ea4f
perf(ios): uifont and formatted string optimizations plus uiimage scaling ( #9761 )
2022-03-01 12:32:39 -08:00
b2f792324d
feat(image-source): add saveToFileAsync, toBase64StringAsync & resizeAsync ( #9404 )
2021-09-08 16:07:39 -07:00
f380782766
fix(ios): image with alpha resize ( #9386 )
...
closes #9385
2021-05-10 19:22:08 -07:00
c4972d7546
chore: fresh build of widgets
...
also reverts e002d72d41
2021-01-29 14:22:54 -08:00
e002d72d41
fix(ios): force release of nsdata after saving image ( #9177 )
...
gc isn't cleaning up this fast enough when used in a loop e.g https://github.com/NativeScript/plugins/issues/71
2021-01-26 13:25:58 -08:00
b96654276b
fix(ios): UIImage.imageWithData.async is not a function
...
closes https://github.com/NativeScript/NativeScript/issues/8986
2020-10-28 11:36:51 -07:00
020ad4da37
chore(core): monorepo, esm targeting, improved management ( #8707 )
2020-08-25 20:00:59 -07:00