Created
July 4, 2019 19:24
-
-
Save rlingineni/58e610d292fb6ad977dac6cf25f9c10a to your computer and use it in GitHub Desktop.
Bottom Sheet Step-1
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<Frame x:Name="bottomSheet" HasShadow="true" CornerRadius="8" Padding="1,4,1,0" BackgroundColor="#faf9f8" | |
RelativeLayout.YConstraint="{ConstraintExpression Type=RelativeToParent,Property=Height,Factor=.9,Constant=0}" | |
RelativeLayout.WidthConstraint="{ConstraintExpression Type=RelativeToParent,Property=Width,Factor=1,Constant=0}" | |
RelativeLayout.HeightConstraint="{ConstraintExpression | |
Type=RelativeToParent,Property=Height,Factor=1,Constant=0}"> | |
</Frame> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<Frame x:Name="bottomSheet" HasShadow="true" CornerRadius="8" Padding="1,4,1,0" BackgroundColor="#faf9f8" | |
RelativeLayout.YConstraint="{ConstraintExpression Type=RelativeToParent,Property=Height,Factor=.9,Constant=0}" | |
RelativeLayout.WidthConstraint="{ConstraintExpression Type=RelativeToParent,Property=Width,Factor=1,Constant=0}" | |
RelativeLayout.HeightConstraint="{ConstraintExpression | |
Type=RelativeToParent,Property=Height,Factor=1,Constant=0}"> | |
<SearchBar x:Name="SearchBox" BackgroundColor="Transparent"/> | |
<ListView BackgroundColor="Transparent" HorizontalOptions="FillAndExpand" HeightRequest="400"> | |
/ListView> | |
</Frame> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment