How to place an icon before entry in Xamarin Forms
How to place an icon before entry in Xamarin Forms I am working to create a login screen in Xamarin Forms and want to achieve something like this. Desired UI I have tried this using a Frame in XAML ( see below ) <Frame CornerRadius="4" HasShadow="false" OutlineColor="White" BackgroundColor="{StaticResource MocoBlue}" HeightRequest="50"> <StackLayout Orientation="Horizontal"> <Image x:Name="emailImage" Source="nav_user" HorizontalOptions="Start"/> <suave:MaterialEntry Placeholder="Your email address" WidthRequest="50" Text="{Binding UserName}" HorizontalOptions="FillAndExpand" /> </StackLayout> </Frame> The above code gives me this: (See Below) Result.iOS Result.Android This only wo...
