<ContentPage.ToolbarItems>
<ToolbarItem
Command="{Binding CloseCommand}"
IconImageSource="close.png"
Order="Primary"
Priority="0" />
</ContentPage.ToolbarItems>
<Grid
Padding="10"
RowDefinitions="30,50,*"
RowSpacing="10">
<Label
FontSize="Large"
HorizontalOptions="Center"
Text="{i18N:Translate NumberCards}"
TextColor="White" />
<Label
Grid.Row="1"
FontSize="40"
HorizontalOptions="Center"
Text="10"
TextColor="White"
VerticalTextAlignment="Center" />
<!-- Selection -->
<controls:FlipView
x:Name="FlipView"
HeightRequest="400"
IsFlipped="{x:Binding IsFlipped}">
<controls:FlipView.FrontView>
<Frame
Grid.Row="2"
Margin="30,10,30,30"
Padding="0"
BorderColor="Yellow"
CornerRadius="30"
HasShadow="False"
IsClippedToBounds="True">
<!-- Select truth or dare -->
<StackLayout Padding="20" IsVisible="false">
<ffimageloadingsvg:SvgCachedImage
xct:TouchEffect.Command="{x:Binding FlipCommand}"
xct:TouchEffect.CommandParameter="0"
ErrorPlaceholder="wefeel.svg"
HeightRequest="100"
HorizontalOptions="Center"
LoadingPlaceholder="wefeel.svg"
Source="TruthOrDare_Truth.svg"
WidthRequest="100" />
<Label
HorizontalTextAlignment="Center"
Style="{x:StaticResource TitleHeadingText}"
Text="{i18N:Translate Truth}" />
<ffimageloadingsvg:SvgCachedImage
xct:TouchEffect.Command="{x:Binding FlipCommand}"
xct:TouchEffect.CommandParameter="1"
ErrorPlaceholder="wefeel.svg"
HeightRequest="100"
HorizontalOptions="Center"
LoadingPlaceholder="wefeel.svg"
Source="TruthOrDare_Dare.svg"
VerticalOptions="EndAndExpand"
WidthRequest="100" />
<Label
HorizontalTextAlignment="Center"
Style="{x:StaticResource TitleHeadingText}"
Text="{i18N:Translate Dare}" />
</StackLayout>
</Frame>
</controls:FlipView.FrontView>
<controls:FlipView.BackView />
<!-- Dare -->
<StackLayout
Grid.Row="2"
Padding="40"
IsVisible="{x:Binding IsDare}">
<Label
HorizontalTextAlignment="Center"
Style="{x:StaticResource TitleHeadingText}"
Text="{i18N:Translate Dare}" />
<Label
HorizontalTextAlignment="Center"
LineBreakMode="WordWrap"
Style="{x:StaticResource SubtitleText}"
Text="Comele la boca a tu pareja, delante de un grupo de amigo o familia" />
<StackLayout
x:Name="OptionsStack"
BindableLayout.ItemsSource="{x:Binding UserActivity.Activity.Options}"
HorizontalOptions="Center"
Orientation="Vertical"
VerticalOptions="Center">
<BindableLayout.ItemTemplate>
<DataTemplate x:DataType="activity:OptionsModel">
<Frame
Margin="0,20,0,0"
Padding="0"
CornerRadius="30"
IsClippedToBounds="True">
<Grid>
<Label
Padding="10"
BackgroundColor="{x:StaticResource Primary}"
Style="{StaticResource TitleText}"
Text="{x:Binding OptionText}"
TextColor="{StaticResource WhiteText}"
VerticalTextAlignment="Center" />
<ffimageloadingsvg:SvgCachedImage HorizontalOptions="EndAndExpand" Source="{x:Binding Image}" />
</Grid>
</Frame>
</DataTemplate>
</BindableLayout.ItemTemplate>
</StackLayout>
</StackLayout>
</controls:FlipView>
<!-- Truth -->
<StackLayout
Grid.Row="2"
Padding="40"
IsVisible="{x:Binding IsTruth}"
Spacing="10">
<Label
HorizontalTextAlignment="Center"
Style="{x:StaticResource TitleHeadingText}"
Text="Verdad" />
<Label
HorizontalTextAlignment="Center"
Style="{x:StaticResource SubtitleText}"
Text="¿Cuántos perros calientes te caben en la boca?" />
<Frame
Padding="0"
BackgroundColor="{x:StaticResource PrimaryLight}"
CornerRadius="25"
HeightRequest="150"
IsClippedToBounds="True"
VerticalOptions="CenterAndExpand"
WidthRequest="200">
<renderers:CustomEditor
x:Name="TruthEditor"
AutoSize="TextChanges"
HorizontalOptions="CenterAndExpand"
Keyboard="Chat"
Placeholder="{i18N:Translate EnterYourAnswer}"
Style="{x:StaticResource EditorEditorRadius}" />
</Frame>
<Button
Command="{x:Binding SendCommand}"
CommandParameter="{x:Binding Source={x:Reference TruthEditor},
Path=Text}"
IsEnabled="{x:Binding EnableButton}"
Style="{x:StaticResource ButtonCornerBase}"
Text="{i18N:Translate Send}" />
</StackLayout>
</Grid>
but it doesn't show the card

