You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Per the screenshots of this plugin, iOS tabs are now supposed to look like tabs on Android. This plugin brings the tabs up to the top, but also adds in a white block that slides behind the selected tab title. I cannot change its color or get rid of it with any properties. Here is my code and a screen capture of what this looks like.
Per the screenshots of this plugin, iOS tabs are now supposed to look like tabs on Android. This plugin brings the tabs up to the top, but also adds in a white block that slides behind the selected tab title. I cannot change its color or get rid of it with any properties. Here is my code and a screen capture of what this looks like.
<forms:TopTabbedPage
xmlns="http://xamarin.com/schemas/2014/forms"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
xmlns:ui="clr-namespace:XF.Material.Forms.UI;assembly=XF.Material.Forms"
xmlns:forms="clr-namespace:Naxam.Controls.Forms;assembly=Naxam.TopTabbedPage.Forms"
x:Class="Solstice.ProvidersPage"
Title="Providers"
BarTextColor="{StaticResource ComplementaryWhite}"
BarBackgroundColor="{StaticResource PrimaryBlue}">
<ui:MaterialTextField
Placeholder="Specialty"
InputType="Choice"
Choices="{Binding Specialties}"
BackgroundColor="Transparent"
AlwaysShowUnderline="True"
TintColor="{StaticResource SecondaryGreen}"
FloatingPlaceholderColor="{StaticResource SecondaryGreen}"
TextFontFamily="{StaticResource Regular}" />
<ui:MaterialTextField
Placeholder="Provider Name (optional)"
InputType="Default"
BackgroundColor="Transparent"
AlwaysShowUnderline="True"
TintColor="{StaticResource SecondaryGreen}"
TextFontFamily="{StaticResource Regular}" />
<ui:MaterialTextField
Placeholder="Office Name (optional)"
InputType="Default"
BackgroundColor="Transparent"
AlwaysShowUnderline="True"
TintColor="{StaticResource SecondaryGreen}"
TextFontFamily="{StaticResource Regular}" />
<ui:MaterialTextField
Placeholder="Distance"
InputType="Choice"
Choices="{Binding Distances}"
BackgroundColor="Transparent"
AlwaysShowUnderline="True"
TintColor="{StaticResource SecondaryGreen}"
FloatingPlaceholderColor="{StaticResource SecondaryGreen}"
TextFontFamily="{StaticResource Regular}" />
<ui:MaterialTextField
Placeholder="From:"
InputType="Choice"
Choices="{Binding Locations}"
BackgroundColor="Transparent"
AlwaysShowUnderline="True"
TintColor="{StaticResource SecondaryGreen}"
FloatingPlaceholderColor="{StaticResource SecondaryGreen}"
TextFontFamily="{StaticResource Regular}" />
</forms:TopTabbedPage>
The text was updated successfully, but these errors were encountered: