[Vuejs]-Nativescript-vue overflow visible for absolute positioned element outside bounds

0👍

You will have to call setClipChildren(false); on the parent layout. If AbsoluteLayout is on your Page then you should call this method on the native view of page.

For example in page loaded event,

   <Page @loaded="loaded">

    ....

    methods: {
        loaded: function(args){
            args.object.android.setClipChildren(false);
        }
    }

Leave a comment