|
@@ -64,16 +64,28 @@ namespace InABox.Mobile
|
|
|
set => SetValue(UnselectedForegroundProperty, value);
|
|
|
}
|
|
|
|
|
|
- private readonly BindableProperty SeparatorColorProperty = BindableProperty.Create(
|
|
|
- nameof(SeparatorColor),
|
|
|
+ // private readonly BindableProperty SeparatorColorProperty = BindableProperty.Create(
|
|
|
+ // nameof(SeparatorColor),
|
|
|
+ // typeof(Color),
|
|
|
+ // typeof(MobileTabStrip),
|
|
|
+ // XF.Material.Forms.Material.Color.Primary);
|
|
|
+ //
|
|
|
+ // public Color SeparatorColor
|
|
|
+ // {
|
|
|
+ // get => (Color)GetValue(SeparatorColorProperty);
|
|
|
+ // set => SetValue(SeparatorColorProperty, value);
|
|
|
+ // }
|
|
|
+
|
|
|
+ private readonly BindableProperty BorderColorProperty = BindableProperty.Create(
|
|
|
+ nameof(BorderColor),
|
|
|
typeof(Color),
|
|
|
typeof(MobileTabStrip),
|
|
|
XF.Material.Forms.Material.Color.Primary);
|
|
|
|
|
|
- public Color SeparatorColor
|
|
|
+ public Color BorderColor
|
|
|
{
|
|
|
- get => (Color)GetValue(SeparatorColorProperty);
|
|
|
- set => SetValue(SeparatorColorProperty, value);
|
|
|
+ get => (Color)GetValue(BorderColorProperty);
|
|
|
+ set => SetValue(BorderColorProperty, value);
|
|
|
}
|
|
|
|
|
|
private readonly BindableProperty CornerRadiusProperty = BindableProperty.Create(
|
|
@@ -92,7 +104,7 @@ namespace InABox.Mobile
|
|
|
nameof(FontSize),
|
|
|
typeof(double),
|
|
|
typeof(MobileTabStrip),
|
|
|
- Device.GetNamedSize(NamedSize.Medium, typeof(Label)));
|
|
|
+ Device.GetNamedSize(NamedSize.Small, typeof(Label)));
|
|
|
|
|
|
[TypeConverter(typeof(FontSizeConverter))]
|
|
|
public double FontSize
|