-
-
Notifications
You must be signed in to change notification settings - Fork 1.7k
Closed
Description
From @calebeaires on January 8, 2017 21:52
WebView show on Android runtime, but not on ios runtime. Html is a simple page with a simple div. Here is the code.
XML
<ActionBar class="action-bar" [title]="ler.passoTitulo">
</ActionBar>
<StackLayout class='card'>
<GridLayout class="box" rows="auto" columns="auto, *, auto, auto">
<Image col="0" src="~/img/Notes.png"></Image>
<Label col="1" class="label-title" [text]="ler.passoTitulo"></Label>
<Button col="2" class="fa" (tap)="onBackText()" *ngIf="!hideBackButton" text=""></Button>
<Button col="3" class="fa" (tap)="onNextText()" *ngIf="!hideNextButton" text=""></Button>
</GridLayout>
<StackLayout>
<WebView *ngIf="ler.texto" [src]="ler.texto"></WebView>
</StackLayout>
</StackLayout>
Nativescript: 2.4
ios emulator: ios 9.2
Copied from original issue: NativeScript/ios-jsc#706