Android has a clipChildren method for allowing the contents of a view to overflow the view's containing area. I'd like to set this to false since it seems to be set to true by default. I'm trying to access the native android view and set this using the following in nativescript:
var view = topmost().currentPage.content.getViewById('viewname');
view.android.setClipChildren(false);
But this doesn't seem to be working.