Guest User

View Correction

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