Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <Grid
- Grid.Row="2"
- Margin="16,24,16,0"
- IsVisible="False"
- RowDefinitions="48,18"
- RowSpacing="12"
- VerticalOptions="Center">
- <Button
- Grid.Row="0"
- BackgroundColor="White"
- Command="{Binding WithdrawCommand}"
- CornerRadius="8"
- FontFamily="Poppins700"
- FontSize="16"
- IsVisible="False"
- Text="{ext:Strings TEXT_WITHDRAW_APPLICATION}"
- TextColor="{StaticResource BlackRock}"
- VerticalOptions="End">
- <Button.Triggers>
- <DataTrigger
- Binding="{Binding State}"
- TargetType="Button"
- Value="{x:Static enums:JobState.Applied}">
- <Setter Property="IsVisible" Value="True" />
- </DataTrigger>
- </Button.Triggers>
- </Button>
- <Label
- Grid.Row="2"
- FontFamily="Inter400"
- FontSize="14"
- HorizontalOptions="Center"
- Text="{Binding CurrentJob.AppliedText}"
- TextColor="{StaticResource DarkLiver}" />
- <Grid.Triggers>
- <DataTrigger
- Binding="{Binding State}"
- TargetType="Grid"
- Value="{x:Static enums:JobState.Applied}">
- <Setter Property="IsVisible" Value="True" />
- </DataTrigger>
- </Grid.Triggers>
- </Grid>
Advertisement
Add Comment
Please, Sign In to add comment