If I have sfnavigationdrawer with Position Top and Transition Push, Searchbar within NavigationDrawer is not reacting, I cannot even click inside the searchbar. I tested on Sony Xperia z3 with Android 6 version. In Emulator with Android 8 works fine. It also works using Position="Right"
<navigation:SfNavigationDrawer x:Name="navigationDrawer" IsOpen="{Binding IsFilterOpen, Mode=TwoWay}" Position="Top" Transition="Push" DrawerWidth="150" DrawerHeight="350" DrawerHeaderHeight="50" DrawerFooterHeight="50">
<navigation:SfNavigationDrawer.DrawerHeaderView>
<StackLayout x:Name="headerLayout" Orientation="Vertical" CompressedLayout.IsHeadless="true">
</StackLayout>
</navigation:SfNavigationDrawer.DrawerHeaderView>
<navigation:SfNavigationDrawer.ContentView>
<StackLayout Orientation="Vertical" VerticalOptions="FillAndExpand" HorizontalOptions="FillAndExpand">
<SearchBar x:Name="MyAutoComplete" TextChanged="MyAutoComplete_TextChanged" HorizontalOptions="FillAndExpand" Placeholder="{resx:Translate Search}" PlaceholderColor="Silver" Text="{Binding SearchText, Mode=OneWayToSource}"