Dimitris-Rafail Katsampas
Dimitris-Rafail Katsampas
@arthurfiorette Has this been tested on safari? I tested v1.9.1 and saw no difference. Trying to understand if there's still something wrong on my side or AI agents lie like...
@ammarahm-ed It might be a good idea to add `self` property to window, too. Might prove useful when we extend Worker functionality in the future. https://developer.mozilla.org/en-US/docs/Web/API/Window/self This requires implementation of...
I have published a community plugin for ConstraintLayout https://www.npmjs.com/package/@nativescript-community/ui-constraintlayout. On the iOS side, the plugin relies on {N} core layout system instead of Autolayout which seems to be more flexible.
@farfromrefug It seems that `core.aar` was not purposely generated. I think it might be a result of a build in NativeScript/apps? Not sure. We could remove `core.aar` and add a...
~~What made you use this property? I don't recall any `hidden` property in the `View` API. These changes are wrong as we use `visibility` to perform such an action.~~
> We have hidden as well. The changes look accurate, had to adjust few things but it just ensures when using it on proxy that it’s children we marked hidden...
@KL2400040448 @NathanWalker Instead of meddling with the property like this, maybe we can add an event listener for it. ```ts function onHiddenPropertyChange(args: EventData) { const view = args.object as ProxyViewContainer;...
@farfromrefug What impact will this have for devs that use unregistered apis inside their apps? For instance, I could make use of `java.text.*` (e.g. SimpleDateFormat) which I don't see there.
> I’ve now addressed your feedback: > > ✅ Removed the legacy originX and originY property registrations from ViewCommon > > ✅ Removed the public property declarations from the class...
> Thanks @shridmishra for the PR, I do have a concern with the changes, that I would like to bring up with @NathanWalker and @CatchABus: `origin-x` and `origin-y` are not...