Guest User

Nativescript/angular view

a guest
Apr 11th, 2016
101
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 0.46 KB | None | 0 0
  1. <TabView>
  2.     <StackLayout *tabItem="{title: 'Accueil'}">
  3.     </StackLayout>
  4.     <StackLayout *tabItem="{title: 'Notifications'}">
  5.      <PullToRefresh (refresh)="refreshPage($event)">
  6.       <ListView [items]="notificationsList">
  7.         <template #item="item">
  8.           <Label text="{{item.text}}" textWrap="true" id="notif" [class.boldFont]="!item.status"></Label>
  9.         </template>
  10.       </ListView>
  11.      </PullToRefresh>
  12.     </StackLayout>
  13. </TabView>
Advertisement
Add Comment
Please, Sign In to add comment