You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Mr. Yaslem,,
I have a text reversed issue with RGridLayout in the ListView template with condition on the row and more items than screen can show (you need to scroll).
Sometimes you can see reversed text right away, and sometimes after you scroll up and down several times.
The row with the condition can reverse text, the row without a condition works good.
This happens on NS7 angular 11 and NS8 angular 12 with @nativescript-rtl/ui 0.2.0
<GridLayout>
<ListView [items]="items">
<ng-template let-item="item" let-i="index">
<RGridLayout isRtl="true" rows="auto,auto" columns="*,*"
[nsRouterLink]="['../item', item.id]">
<Label *ngIf="i % 2 === 0" row="0" col="0" [text]="item.name"></Label> <!-- Text reversed sometimes -->
<Label row="1" col="1" [text]="item.name"></Label> <!-- Text good -->
</RGridLayout>
</ng-template>
</ListView>
</GridLayout>
Steps to Reproduce
ns create projectName --ng
ns plugin add @nativescript-rtl/ui
add registration of the RGridLayout in the app.module
Change the ListView template to the code from above in the file item.component.html
Add more items to the array in the file item.service
Mr. Yaslem,,
I have a text reversed issue with RGridLayout in the ListView template with condition on the row and more items than screen can show (you need to scroll).
Sometimes you can see reversed text right away, and sometimes after you scroll up and down several times.
The row with the condition can reverse text, the row without a condition works good.
This happens on NS7 angular 11 and NS8 angular 12 with @nativescript-rtl/ui 0.2.0
Steps to Reproduce
Result
Source code for this example
rtlError.zip
Thanks for the great plugin!
The text was updated successfully, but these errors were encountered: