|
26 | 26 | </BindableLayout.ItemTemplate> |
27 | 27 | </StackLayout> |
28 | 28 |
|
| 29 | + <ContentView Grid.Row="2" |
| 30 | + Grid.ColumnSpan="2" |
| 31 | + BindingContext="{Reference this}" |
| 32 | + IsVisible="{Binding IsShowRemark}" |
| 33 | + x:Name="RemarkContent"> |
| 34 | + <VerticalStackLayout> |
| 35 | + <Label Text="Remark:" |
| 36 | + FontAttributes="Bold" |
| 37 | + Margin="0,10,0,10" /> |
| 38 | + <FlexLayout Wrap="Wrap" |
| 39 | + AlignItems="Center"> |
| 40 | + <Ellipse WidthRequest="7" |
| 41 | + HeightRequest="7" |
| 42 | + Fill="{StaticResource NormalFill}" |
| 43 | + Margin="0,0,5,0" /> |
| 44 | + <Label Text="Procedure to be done." |
| 45 | + TextColor="{StaticResource Gray360}" /> |
| 46 | + <Ellipse WidthRequest="7" |
| 47 | + HeightRequest="7" |
| 48 | + Fill="{StaticResource SuccessFill}" |
| 49 | + Margin="20,0,5,0" /> |
| 50 | + <Label Text="Procedure completed." |
| 51 | + TextColor="{StaticResource Gray360}" /> |
| 52 | + |
| 53 | + <Ellipse WidthRequest="7" |
| 54 | + HeightRequest="7" |
| 55 | + Fill="{StaticResource ActiveFill}" |
| 56 | + Margin="0,0,5,0" /> |
| 57 | + <Label Text="Present procedure." |
| 58 | + TextColor="{StaticResource Gray360}" /> |
| 59 | + </FlexLayout> |
| 60 | + </VerticalStackLayout> |
| 61 | + </ContentView> |
29 | 62 |
|
30 | | - <Label Text="Remark:" |
31 | | - FontAttributes="Bold" |
32 | | - Margin="0,0,0,10" /> |
33 | | - <HorizontalStackLayout> |
34 | | - <Rectangle WidthRequest="7" |
35 | | - HeightRequest="7" |
36 | | - Fill="#B3B3B3" |
37 | | - RadiusX="7" |
38 | | - RadiusY="7" |
39 | | - Margin="0,0,5,0" /> |
40 | | - <Label Text="Procedure to be done." |
41 | | - TextColor="{StaticResource Gray360}" /> |
42 | | - <Rectangle WidthRequest="7" |
43 | | - HeightRequest="7" |
44 | | - Fill="#01ae54" |
45 | | - RadiusX="7" |
46 | | - RadiusY="7" |
47 | | - Margin="20,0,5,0" /> |
48 | | - <Label Text="Procedure completed." |
49 | | - TextColor="{StaticResource Gray360}" /> |
50 | | - </HorizontalStackLayout> |
51 | | - <HorizontalStackLayout Margin="0,10,0,0"> |
52 | | - <Rectangle WidthRequest="7" |
53 | | - HeightRequest="7" |
54 | | - Fill="{StaticResource Primary}" |
55 | | - RadiusX="7" |
56 | | - RadiusY="7" |
57 | | - Margin="0,0,5,0" /> |
58 | | - <Label Text="Present procedure." |
59 | | - TextColor="{StaticResource Gray360}" /> |
60 | | - </HorizontalStackLayout> |
61 | 63 | </VerticalStackLayout> |
62 | 64 | </ContentView> |
0 commit comments