Advertisement
Guest User

chatbubbleken

a guest
Jan 16th, 2018
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.96 KB | None | 0 0
  1. <ListView.itemTemplate>
  2. <StackLayout id="">
  3.  
  4. <StackLayout visibility="">
  5. <GridLayout width="100%" columns="*" rows="auto, 20" class="msg them">
  6. <StackLayout orientation="horizontal">
  7. <Image class="authorimg" width="30" height="30" stretch="aspectFill" verticalAlignment="top" src="" />
  8. <Label text="" textWrap="true" verticalAlignment="top" class="msg_text"/>
  9. </StackLayout>
  10.  
  11. <Label class="msg_timestamp" text="" verticalAlignment="top" row="1" colSpan="2" />
  12. </GridLayout>
  13. </StackLayout>
  14.  
  15. <StackLayout visibility="">
  16. <GridLayout columns="*" rows="auto, 40" class="msg me">
  17. <StackLayout orientation="horizontal" horizontalAlignment="right">
  18. <Label text="" class="msg_text" textWrap="true" verticalAlignment="top" />
  19. <Image class="authorimg" stretch="aspectFill" height="30" width="30" verticalAlignment="top" src="" col="1" />
  20. </StackLayout>
  21. <Label class="msg_timestamp" text="" verticalAlignment="top" row="1" />
  22. </GridLayout>
  23. </StackLayout>
  24.  
  25. </StackLayout>
  26. </ListView.itemTemplate>
  27.  
  28.  
  29.  
  30. .msg {
  31. font-size: 14px;
  32. margin-top: 5px;
  33. margin-bottom: 20;
  34. }
  35.  
  36. .me .msg_text {
  37. background-color: #30A9FF;
  38. color: white;
  39. padding: 8px;
  40. margin-left: 40px;
  41. border-radius: 15;
  42.  
  43. }
  44.  
  45. .them .msg_text {
  46. background-color: #e0e0e0;
  47. color: #333;
  48. padding: 7px;
  49. border-radius: 15;
  50. margin-right: 40px;
  51. }
  52.  
  53. .authorimg {
  54. margin: 0px 5px 5px 5px;
  55. width: 30;
  56. height: 30;
  57. border-radius: 15;
  58. }
  59.  
  60. .them .msg_timestamp {
  61. color: gray;
  62. font-size: 11px;
  63. margin-left: 40px;
  64. }
  65.  
  66. .me .msg_timestamp {
  67. color: gray;
  68. font-size: 11px;
  69. margin-right: 40px;
  70. text-align: right;
  71. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement