@nativescript/types-android
Advanced tools
Changelog
8.2.0 (2022-03-08)
Changelog
8.1.0 (2021-09-08)
reduce-css-calc
w/ webpack without error (#9510) (0fd92b7)nativeTextViewProtected
internally (#9483) (71b856c)Changelog
8.0.0 (2021-04-06)
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.
BEFORE:
// #aarrggbb
const color = new Color('#ff00ff00');
Label {
background-color: #ff00ff00;
}
AFTER:
// #rrggbbaa
const color = new Color('#00ff00ff');
Label {
background-color: #00ff00ff;
}
Changelog
7.3.0 (2021-02-27)
BEFORE:
import { AndroidTransitionType } from '@nativescript/core/ui/transition';
AFTER:
import { Transition } from '@nativescript/core';
Transition.AndroidTransitionType.enter; // etc.
native.Array
for any of your own custom plugin typings, you can switch them to androidNative.Array
BEFORE:
public writeAsync(path: string, bytes: native.Array<number>) ...
AFTER:
public writeAsync(path: string, bytes: androidNative.Array<number>) ...
Changelog
7.2.0 (2021-02-05)
Changelog
7.1.0 (2020-12-30)