Igor Randjelovic
Igor Randjelovic
@mrh1997 you can also remove the inline `backgroundColor="red"` and use just CSS. The issue I believe without digging too deep is that `backgroundColor="red"` is being "removed" by the toggle (the...
For example this: ```html .toggle-on { background-color: green; } .toggle-off { background-color: red; } ``` Though in this specific case, it's probably a lot easier to just do: ```html ```
Easiest way is to just create `.vue` files, and publish them as a package - any ns-vue project uses webpack to compile, so pulling pure vue files should work just...
This has been fixed in NativeScript https://github.com/NativeScript/NativeScript/releases/tag/8.1.0-core by using the Appearance API on ios15+
https://docs.nativescript.org/api-reference/interfaces/_ui_core_view_base_.showmodaloptions.html Try `cancelable: false`. You can also use the `onShownModally` way on the modal component by adding `@shownModally` and a handler in methods.
Known limitation, see: https://github.com/nativescript-vue/nativescript-vue/issues/525 (and many more). Workaround: call `refresh()` on the ListView (using a ref for example) whenever external data changes.
It would be very helpful if you could provide a repro + filled out the issue template so we can look into the issue and a possible fix. Otherwise there's...
> > > Any news on this? Yes: https://github.com/nativescript-vue/nativescript-vue/issues/726#issuecomment-723047385
This is a current limitation of NativeScript, when css classes change, the animations are restarted. Vue adds 2 classes when the animation starts (https://vuejs.org/v2/guide/transitions.html#Transition-Classes), it's been a while since I...
@PatrickLohan if you are talking about `$navigateTo` then this is not the same issue - would you mind sharing the problem you're having along with some reproduction if possible? The...