-
-
Notifications
You must be signed in to change notification settings - Fork 48
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Showing empty <Label> instead of Slide Content (Angular 6) #79
Comments
|
Android 9 SDK 28 and all Slides affected.
|
also occurs on iOS 12 with N{5} <Pager row="0" timetable
[items]="availableTimetable.weekdays">
<ng-template pagerItemTemplate let-i="index" let-day="item">
<GridLayout times flexWrap="wrap"
iosOverflowSafeArea="false">
<StackLayout orientation="horizontal">
<Button text="{{ '\ue080' }}"></Button>
<Label text="{{day}}"></Label>
</StackLayout>
<FlexboxLayout class="part" flexWrap="wrap"
[width]="cardWidth" iosOverflowSafeArea="false"
*ngFor="let part of availableTimetable.times">
<ng-template ngFor let-time let-j="index" let-even="even" [ngForOf]="part">
<Button text="{{ '\ue080' }}" [flexWrapBefore]="even"></Button>
<Label flexGrow="1" [text]="time"></Label>
</ng-template>
</FlexboxLayout>
</GridLayout>
</ng-template>
</Pager> |
|
The problem lied on Calling NativeScritpt/nativescript-angular has refactored ListView to extend TemplatedItemsComponent I suggest @triniwiz what do you think? |
@mailiam i've started https://github.com/triniwiz/nativescript-pager/tree/v9 you can test and lmk how things are running |
I should've looked into latest commits. |
@mailiam i'm exploring |
Great! looking forward for v9 public release. |
Showing empty
<Label>
instead of Slide Content (Angular 6)The text was updated successfully, but these errors were encountered: