|
<AbsoluteLayout>
<ContentView x:Name="propertyView" BackgroundColor="Transparent" AbsoluteLayout.LayoutFlags="All">
<Grid RowSpacing="0" ColumnSpacing="0">
<Grid.RowDefinitions>
<RowDefinition Height="50" />
<RowDefinition Height="1" />
<RowDefinition Height="*" />
</Grid.RowDefinitions>
<Label Grid.Row="0" x:Name="propertyLabel" Text=" Properties" TextColor="Gray" BackgroundColor="#f3f2f2" HorizontalOptions="FillAndExpand" VerticalOptions="FillAndExpand" VerticalTextAlignment="Center" HorizontalTextAlignment="Start" FontSize="18" />
<BoxView BackgroundColor="#cecccc" HorizontalOptions="FillAndExpand" Grid.Row="1" />
<ScrollView x:Name="propertyContent" IsClippedToBounds="true" Padding="20,5" Grid.Row="2" BackgroundColor="White" Orientation="Vertical" />
</Grid>
</ContentView>
</AbsoluteLayout> |