Hi,
Is there an option to hide section under Entry so only the entry field is visible?
<Grid
Grid.Row="4"
Grid.Column="1"
ColumnDefinitions="*,auto"
RowDefinitions="auto"
RowSpacing="0">
<sfInputLayout:SfTextInputLayout
Grid.Column="0"
Background="Red"
ContainerBackground="White"
ContainerType="Outlined"
InputViewPadding="10,0,0,0"
Stroke="{StaticResource BorderColor}">
<Entry Text="Hello" />
</sfInputLayout:SfTextInputLayout>
<Image
Grid.Column="1"
Margin="10,0,0,0"
HeightRequest="35"
Source="misc_search_grey" />
</Grid>