NativeScript Versions Save

⚡ Empowering JavaScript with native platform APIs. ✨ Best of all worlds (TypeScript, Swift, Objective C, Kotlin, Java, Dart). Use what you love ❤️ Angular, Capacitor, Ionic, React, Solid, Svelte, Vue with: iOS (UIKit, SwiftUI), Android (View, Jetpack Compose), Dart (Flutter) and you name it compatible.

8.0.9-core

2 years ago

8.0.9 (2021-09-02)

Bug Fixes

  • ios: backport: actionBar to use appearance api on ios13+ (#9530) (2b8783e)

8.0.8-core

3 years ago

Bug Fixes

8.0.7-core

3 years ago

Bug Fixes

  • animations: stop keyframe animations after View unloaded (#9421) (04381fa)
  • box-shadow: support for 'none' (#9418) (263c920)
  • core: guard unstable page/frame init contexts under async conditions (#9428) (d3bc4d5)
  • core: typings for Utils.queueMacrotask and static methods on Observable (#9425) (d589ac6)

Features

  • WebView: allow JS bound window frame navigation to be intercepted through loadStarted (#9430) (3806b85)

8.0.6-core

3 years ago

Bug Fixes

Features

8.0.5-core

3 years ago

Bug Fixes

  • android: image asset handling regarding requestLegacyExternalStorage (#9373) (f311151)

Features

8.0.4-core

3 years ago

Bug Fixes

Features

8.0.3-core

3 years ago

Bug Fixes

  • core: protected class getter/setter webpack issue (6076047)
  • core: typings issue around Trace.categories.All (27c545d)

8.0.2-core

3 years ago

Bug Fixes

  • a11y: Accessibility breaks limiting metadata (#9332) (cbdff1f)
  • a11y: ios voiceover crash during touch (#9318) (9a407ce)

Features

  • text-base: allow subclass to override createFormattedTextNative (#9334) (b29e145)

8.0.1-core

3 years ago

Bug Fixes

  • android: accessibility crash on View not extending android.view.View (#9303) (fde666d)
  • android: crash on slide transition (#9289) (e73cebf)
  • core: Enums deprecation adjustment (#9306) (f42acd8)

8.0.0-core

3 years ago

Bug Fixes

Features

BREAKING CHANGES

  • core: BottomNavigation and Tabs moved to @nativescript-community

If using BottomNavigation, just install @nativescript-community/ui-material-bottom-navigation and update your imports to use it.

If using Tabs, just install @nativescript-community/ui-material-tabs and update your imports to use it.

  • core: support web standard #rrggbbaa format

BEFORE:

// #aarrggbb

const color = new Color('#ff00ff00');

Label {
    background-color: #ff00ff00;
}

AFTER:

// #rrggbbaa

const color = new Color('#00ff00ff');

Label {
    background-color: #00ff00ff;
}