Stan

Results 11 comments of Stan

I replaced this plugin by a custom component based on a simple button with rounded corners (same effect and same length of code) The strange thing was that on first...

@vick16ach Covert svg to font (with [icomoon](https://icomoon.io/app) for example)

Same problem on iOS with v3.0.1 `Can't find variable: NativeClass`

> Hi, > Which version of CLI and NS core-module ? > Did you try `ns clean` ? this will clean platforms, hooks, node_modules, package-lock.json Yes @nativescript/core 7.0.13 NS version:...

@FranciZ small correction: instead of `GMSLengthKind.rhumb` must be `GMSLengthKind.kGMSLengthRhumb`

``` ``` ``` @ViewChild("modal") modal: ElementRef; this.modal.nativeElement.viewController.view.backgroundColor = this.modal.nativeElement.style.backgroundColor.ios; ```

@AndriiYalovenko As a workaround I did: - init.component.common.scss - init.component.android.scss (imports init.component.common.scss) - init.component.ios.scss (imports init.component.common.scss)

I solved it by using: ``` @ViewChild("carousel", { static: false }) carousel: ElementRef; ... this.data = < my new data >; setTimeout(() => { this.carousel.nativeElement.refresh(); }); ```

@vosgaust, How did you solved this? Thanks