mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-08-18 05:18:39 +08:00
feat: implement BoxShadowDrawable
This commit is contained in:

committed by
Nathan Walker

parent
a822f2affb
commit
9a7d3ecb34
@ -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);
|
||||
|
Reference in New Issue
Block a user