nativescript-nbmaterial-elevation
v1.0.1
Published
A nativescript implementation of material elevation for both platform iOS and Android
Maintainers
Readme
Elevation implementation for nbmaterial packages
The module implement elevation on both iOS and Android. It augments nativescript Style/View and background. This way you can define "elevation" property on DOM elements or in CSS.
interface Style {
elevation: number;
}
interface Background {
elevation: number;
}
interface View {
elevation: number;
getElevationDefault(): number;
setElevationNative(back: Background);
}