*ng Если не работает в ios nativescript-angular

В нижнем колонтитуле на основе *ngif условия я меняю значки нижнего колонтитула... он отлично работает в Android, но не в случае IOS

<Button class="footer-class" textWrap="true" (tap)="onNavItemTap('/profile')" *ngIf="isLoggedIn">
<FormattedString>
   <Span fontFamily="FontAwesome" [text]="profile" class="icon-style fa"></Span>
   <Span text="&#x000a;profile" class="footer-title"></Span>
</FormattedString>
</Button>
<Button class="footer-class" textWrap="true" (tap)="onNavItemTap('/contactus')">
   <FormattedString>
      <Span fontFamily="FontAwesome" [text]="contactus" class="icon-style fa"></Span>
      <Span text="&#x000a;contactus" class="footer-title"></Span>
   </FormattedString>
</Button>

..

0 ответов