EcoTrackerStatsView.xaml 9.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224
  1. <UserControl xmlns="https://github.com/avaloniaui"
  2. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  3. x:Class="ControlCatalog.Pages.EcoTrackerStatsView">
  4. <ScrollViewer VerticalScrollBarVisibility="Auto">
  5. <StackPanel Spacing="0">
  6. <!-- Stat chips row -->
  7. <StackPanel Orientation="Horizontal" Spacing="10" Margin="16,20,16,0">
  8. <!-- CO2 chip -->
  9. <Border CornerRadius="12" Background="White"
  10. Padding="12,10" HorizontalAlignment="Stretch">
  11. <StackPanel Spacing="2">
  12. <TextBlock Text="CO&#x2082;"
  13. FontSize="10" FontWeight="Medium"
  14. Foreground="#90A4AE"/>
  15. <TextBlock Text="12.4 kg"
  16. FontSize="16" FontWeight="Bold"
  17. Foreground="#4CAF50"/>
  18. <StackPanel Orientation="Horizontal" Spacing="3">
  19. <TextBlock Text="&#x2191;8%"
  20. FontSize="10" FontWeight="SemiBold"
  21. Foreground="#4CAF50"/>
  22. <TextBlock Text="wk"
  23. FontSize="10"
  24. Foreground="#90A4AE"/>
  25. </StackPanel>
  26. </StackPanel>
  27. </Border>
  28. <!-- Energy chip -->
  29. <Border CornerRadius="12" Background="White"
  30. Padding="12,10" HorizontalAlignment="Stretch">
  31. <StackPanel Spacing="2">
  32. <TextBlock Text="Energy"
  33. FontSize="10" FontWeight="Medium"
  34. Foreground="#90A4AE"/>
  35. <TextBlock Text="45 kWh"
  36. FontSize="16" FontWeight="Bold"
  37. Foreground="#FFC107"/>
  38. <StackPanel Orientation="Horizontal" Spacing="3">
  39. <TextBlock Text="&#x2191;12%"
  40. FontSize="10" FontWeight="SemiBold"
  41. Foreground="#FFC107"/>
  42. <TextBlock Text="wk"
  43. FontSize="10"
  44. Foreground="#90A4AE"/>
  45. </StackPanel>
  46. </StackPanel>
  47. </Border>
  48. <!-- Water chip -->
  49. <Border CornerRadius="12" Background="White"
  50. Padding="12,10" HorizontalAlignment="Stretch">
  51. <StackPanel Spacing="2">
  52. <TextBlock Text="Water"
  53. FontSize="10" FontWeight="Medium"
  54. Foreground="#90A4AE"/>
  55. <TextBlock Text="87 L"
  56. FontSize="16" FontWeight="Bold"
  57. Foreground="#2196F3"/>
  58. <StackPanel Orientation="Horizontal" Spacing="3">
  59. <TextBlock Text="&#x2191;5%"
  60. FontSize="10" FontWeight="SemiBold"
  61. Foreground="#2196F3"/>
  62. <TextBlock Text="wk"
  63. FontSize="10"
  64. Foreground="#90A4AE"/>
  65. </StackPanel>
  66. </StackPanel>
  67. </Border>
  68. </StackPanel>
  69. <!-- Weekly Activity section -->
  70. <StackPanel Margin="16,20,16,0" Spacing="12">
  71. <TextBlock Text="This Week's Activity"
  72. FontSize="16" FontWeight="SemiBold"
  73. Foreground="#1A2E1C"/>
  74. <!-- Bar chart -->
  75. <StackPanel Orientation="Horizontal" Spacing="8">
  76. <!-- Monday: 55% -->
  77. <StackPanel Spacing="4" HorizontalAlignment="Center">
  78. <Border Height="36" Width="24"/>
  79. <Border Height="44" Width="24" CornerRadius="4,4,2,2" Background="#A5D6A7"/>
  80. <TextBlock Text="M" FontSize="10" Foreground="#90A4AE" HorizontalAlignment="Center"/>
  81. </StackPanel>
  82. <!-- Tuesday: 70% -->
  83. <StackPanel Spacing="4" HorizontalAlignment="Center">
  84. <Border Height="24" Width="24"/>
  85. <Border Height="56" Width="24" CornerRadius="4,4,2,2" Background="#A5D6A7"/>
  86. <TextBlock Text="T" FontSize="10" Foreground="#90A4AE" HorizontalAlignment="Center"/>
  87. </StackPanel>
  88. <!-- Wednesday: 45% -->
  89. <StackPanel Spacing="4" HorizontalAlignment="Center">
  90. <Border Height="44" Width="24"/>
  91. <Border Height="36" Width="24" CornerRadius="4,4,2,2" Background="#A5D6A7"/>
  92. <TextBlock Text="W" FontSize="10" Foreground="#90A4AE" HorizontalAlignment="Center"/>
  93. </StackPanel>
  94. <!-- Thursday: 88% -->
  95. <StackPanel Spacing="4" HorizontalAlignment="Center">
  96. <Border Height="10" Width="24"/>
  97. <Border Height="70" Width="24" CornerRadius="4,4,2,2" Background="#A5D6A7"/>
  98. <TextBlock Text="T" FontSize="10" Foreground="#90A4AE" HorizontalAlignment="Center"/>
  99. </StackPanel>
  100. <!-- Friday: 60% -->
  101. <StackPanel Spacing="4" HorizontalAlignment="Center">
  102. <Border Height="32" Width="24"/>
  103. <Border Height="48" Width="24" CornerRadius="4,4,2,2" Background="#A5D6A7"/>
  104. <TextBlock Text="F" FontSize="10" Foreground="#90A4AE" HorizontalAlignment="Center"/>
  105. </StackPanel>
  106. <!-- Saturday: 92% -->
  107. <StackPanel Spacing="4" HorizontalAlignment="Center">
  108. <Border Height="6" Width="24"/>
  109. <Border Height="74" Width="24" CornerRadius="4,4,2,2" Background="#A5D6A7"/>
  110. <TextBlock Text="S" FontSize="10" Foreground="#90A4AE" HorizontalAlignment="Center"/>
  111. </StackPanel>
  112. <!-- Sunday (today): 75% -->
  113. <StackPanel Spacing="4" HorizontalAlignment="Center">
  114. <Border Height="20" Width="24"/>
  115. <Border Height="60" Width="24" CornerRadius="4,4,2,2" Background="#4CAF50"/>
  116. <TextBlock Text="S" FontSize="10" FontWeight="Bold" Foreground="#2E7D32" HorizontalAlignment="Center"/>
  117. </StackPanel>
  118. </StackPanel>
  119. </StackPanel>
  120. <!-- Carbon Breakdown section -->
  121. <StackPanel Margin="16,20,16,20" Spacing="12">
  122. <TextBlock Text="Carbon Breakdown"
  123. FontSize="16" FontWeight="SemiBold"
  124. Foreground="#1A2E1C"/>
  125. <!-- Transportation: 33% -->
  126. <Border CornerRadius="10" Background="White" Padding="12">
  127. <StackPanel Spacing="6">
  128. <Grid ColumnDefinitions="*,Auto">
  129. <TextBlock Text="Transportation"
  130. FontSize="13" FontWeight="Medium"
  131. Foreground="#1A2E1C"/>
  132. <TextBlock Grid.Column="1"
  133. Text="4.1 kg"
  134. FontSize="13" FontWeight="Bold"
  135. Foreground="#4CAF50"/>
  136. </Grid>
  137. <Grid ColumnDefinitions="33*,67*" Height="6">
  138. <Border Grid.ColumnSpan="2" CornerRadius="3" Background="#E8F5E9"/>
  139. <Border CornerRadius="3" Background="#4CAF50"/>
  140. </Grid>
  141. </StackPanel>
  142. </Border>
  143. <!-- Food: 31% -->
  144. <Border CornerRadius="10" Background="White" Padding="12">
  145. <StackPanel Spacing="6">
  146. <Grid ColumnDefinitions="*,Auto">
  147. <TextBlock Text="Food"
  148. FontSize="13" FontWeight="Medium"
  149. Foreground="#1A2E1C"/>
  150. <TextBlock Grid.Column="1"
  151. Text="3.8 kg"
  152. FontSize="13" FontWeight="Bold"
  153. Foreground="#4CAF50"/>
  154. </Grid>
  155. <Grid ColumnDefinitions="31*,69*" Height="6">
  156. <Border Grid.ColumnSpan="2" CornerRadius="3" Background="#E8F5E9"/>
  157. <Border CornerRadius="3" Background="#4CAF50"/>
  158. </Grid>
  159. </StackPanel>
  160. </Border>
  161. <!-- Home Energy: 21% -->
  162. <Border CornerRadius="10" Background="White" Padding="12">
  163. <StackPanel Spacing="6">
  164. <Grid ColumnDefinitions="*,Auto">
  165. <TextBlock Text="Home Energy"
  166. FontSize="13" FontWeight="Medium"
  167. Foreground="#1A2E1C"/>
  168. <TextBlock Grid.Column="1"
  169. Text="2.6 kg"
  170. FontSize="13" FontWeight="Bold"
  171. Foreground="#4CAF50"/>
  172. </Grid>
  173. <Grid ColumnDefinitions="21*,79*" Height="6">
  174. <Border Grid.ColumnSpan="2" CornerRadius="3" Background="#E8F5E9"/>
  175. <Border CornerRadius="3" Background="#4CAF50"/>
  176. </Grid>
  177. </StackPanel>
  178. </Border>
  179. <!-- Shopping: 15% -->
  180. <Border CornerRadius="10" Background="White" Padding="12">
  181. <StackPanel Spacing="6">
  182. <Grid ColumnDefinitions="*,Auto">
  183. <TextBlock Text="Shopping"
  184. FontSize="13" FontWeight="Medium"
  185. Foreground="#1A2E1C"/>
  186. <TextBlock Grid.Column="1"
  187. Text="1.9 kg"
  188. FontSize="13" FontWeight="Bold"
  189. Foreground="#4CAF50"/>
  190. </Grid>
  191. <Grid ColumnDefinitions="15*,85*" Height="6">
  192. <Border Grid.ColumnSpan="2" CornerRadius="3" Background="#E8F5E9"/>
  193. <Border CornerRadius="3" Background="#4CAF50"/>
  194. </Grid>
  195. </StackPanel>
  196. </Border>
  197. </StackPanel>
  198. </StackPanel>
  199. </ScrollViewer>
  200. </UserControl>