feat: implement BoxShadowDrawable

This commit is contained in:
Igor Randjelovic
2021-03-15 18:08:12 +01:00
committed by Nathan Walker
parent a822f2affb
commit 9a7d3ecb34
7 changed files with 234 additions and 142 deletions

View File

@ -2,9 +2,16 @@
module nativescript {
module widgets {
export class Utils {
public static drawBoxShadow(view: android.view.View, value: string);
}
export class Utils {
public static drawBoxShadow(view: android.view.View, value: string): void;
public static clearBoxShadow(view: android.view.View): void;
}
export class BoxShadowDrawable {
public constructor(drawable: android.graphics.drawable.Drawable, value: string);
public getWrappedDrawable(): android.graphics.drawable.Drawable;
public toString(): string;
}
export class CustomTransition extends androidx.transition.Visibility {
constructor(animatorSet: android.animation.AnimatorSet, transitionName: string);