Advertisement
Guest User

Untitled

a guest
Jun 18th, 2019
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.24 KB | None | 0 0
  1. <Page class="page">
  2. <ActionBar class="action-bar">
  3. <Label class="action-bar-title" text="Image backup"></Label>
  4. </ActionBar>
  5. <TabView :selectedIndex="selectedIndex" @selectedIndexChange="indexChange">
  6. <TabViewItem title="Add images">
  7. <StackLayout>
  8. <Button @tap="takePicture" text="Take picture"></Button>...
  9. <StackLayout v-if="newImages.length" orientation="horizontal">...</StackLayout>
  10. <RadListView layout="grid" ref="newImages" for="image in newImages">
  11. <v-template>
  12. ...
  13. </v-template>
  14. </RadListView>
  15. </StackLayout>
  16. </TabViewItem>
  17. <TabViewItem title="Backedup images">
  18. <StackLayout>
  19. <Button @tap="fetchAllBackedupImages" text="Get all backedup images"></Button>
  20. <StackLayout v-if="backedupImages.length" orientation="horizontal">
  21. ...
  22. </StackLayout>
  23. <RadListView layout="grid" ref="backedupImages" for="image in sortedBackedupImages">
  24. <v-template>...</v-template>
  25. </RadListView>
  26. </StackLayout>
  27. </TabViewItem>
  28. </TabView>
  29. </Page>
  30.  
  31. .centered {
  32. position: fixed;
  33. top: 50%;
  34. left: 50%;
  35. transform: translate(-50%, -50%);
  36. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement