nativescript-nbmaterial-elevation
A nativescript implementation of material elevation for both platform iOS and Android
npm i --save nativescript-nbmaterial-elevation
- Version: 1.0.1
- GitHub:
- NPM: https://www.npmjs.com/package/nativescript-nbmaterial-elevation
- Downloads:
- Last Day: 0
- Last Week: 0
- Last Month: 0
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);
}