Skip to content

Commit

Permalink
Added more Frame samples to Core Gallery (#10616)
Browse files Browse the repository at this point in the history
  • Loading branch information
jsuarezruiz authored Oct 19, 2022
1 parent 3566028 commit 8d6e9c5
Showing 1 changed file with 26 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,32 @@
<Label
Text="Has Shadow" />
</Frame>
<Label
Text="IsClippedToBounds (False)"
Style="{StaticResource Headline}"/>
<Frame
IsClippedToBounds="False"
Padding="0"
BackgroundColor="LightGray"
BorderColor="Red"
CornerRadius="24">
<Image
Aspect="AspectFill"
Source="cover1.jpg" />
</Frame>
<Label
Text="IsClippedToBounds (True)"
Style="{StaticResource Headline}"/>
<Frame
IsClippedToBounds="True"
Padding="0"
BackgroundColor="LightGray"
BorderColor="Red"
CornerRadius="24">
<Image
Aspect="AspectFill"
Source="cover1.jpg" />
</Frame>
</VerticalStackLayout>
</views:BasePage.Content>
</views:BasePage>

0 comments on commit 8d6e9c5

Please sign in to comment.