webleaf
webleaf
@tsonevn setting `isUserInteractionEnabled` to `false` does not disable `ListView` scrolling on Android. You can check your example https://github.com/NativeScript/NativeScript/issues/2892#issuecomment-253536941 or such: ```typescript app.run({ create: () => { const listview = new...
need this too
> The proposed type Duration makes it explicit that a duration value is being expected and solves the problem of specifying its unit. 1. There are more general problem: `Units...
Need it too
Since the issue was opened webpack.config.js was significantly changed. But problem still exist. Now I edit it so: ``` minimizer: [ new UglifyJsPlugin({ uglifyOptions: { parallel: true, cache: true, output:...
@NickIliev in your example of `HomeViewModel` method `fun()` can be called. It works. And it's documented ([Supported expressions](https://docs.nativescript.org/core-concepts/data-binding#supported-expressions)) Then calling nested methods could be Feature Request.
I find workaround. ``` class ViewModel extends Observable { public obj = { fun: function () { return "It's fun()" } }; public call(fun: Function, thisArg, ...args) { return fun.call(thisArg,...
I have same question.