Skip to content

Commit

Permalink
fix #40
Browse files Browse the repository at this point in the history
  • Loading branch information
roubachof committed Oct 4, 2021
1 parent 77d9191 commit a2056d8
Show file tree
Hide file tree
Showing 7 changed files with 42 additions and 40 deletions.
20 changes: 11 additions & 9 deletions Sharpnado.Tabs.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,15 @@
<repository type="git" branch="master" url="https://github.com/roubachof/Sharpnado.Tabs" />
<summary>Including fixed tabs, scrollable tabs, bottom tabs, badge, segmented control, custom tabs, button tabs, ...</summary>
<tags>xamarin.forms android ios uwp netstandard tabs segmented control bottombar fixed tabs scrollable tabs badge</tags>
<releaseNotes>Add MaterialTabItem a complete implementation of the material design tabs, including top icon and leading icon..</releaseNotes>
<releaseNotes>Add MaterialUnderlinedTabItem a complete implementation of the material design tabs, including top icon and leading icon.
Add SVG image support</releaseNotes>
<description>
Pure Xamarin.Forms tabs:
* Fixed tabs (android tabs style)
* Scrollable tabs
* Vertical tabs
* Material design tabs (top and leading icon)
* Support for SVG images
* Segmented tabs
* Custom shadows (neumorphism ready)
* Badges on tabs
Expand Down Expand Up @@ -63,26 +65,26 @@ Pure Xamarin.Forms tabs:
<dependencies>

<group targetFramework=".NETStandard2.0">
<dependency id="Xamarin.Forms" version="4.7.0.968" exclude="Build,Analyzers"/>
<dependency id="Sharpnado.TaskMonitor" version="1.0.1" />
<dependency id="Xamarin.Forms" version="5.0.0.1874" exclude="Build,Analyzers"/>
<dependency id="Sharpnado.TaskMonitor" version="1.0.2" />
<dependency id="Sharpnado.Shadows" version="1.2.0" />
</group>

<group targetFramework="Xamarin.iOS10">
<dependency id="Xamarin.Forms" version="4.7.0.968" exclude="Build,Analyzers"/>
<dependency id="Sharpnado.TaskMonitor" version="1.0.1" />
<dependency id="Xamarin.Forms" version="5.0.0.1874" exclude="Build,Analyzers"/>
<dependency id="Sharpnado.TaskMonitor" version="1.0.2" />
<dependency id="Sharpnado.Shadows" version="1.2.0" />
</group>

<group targetFramework="MonoAndroid10">
<dependency id="Xamarin.Forms" version="4.7.0.968" exclude="Build,Analyzers"/>
<dependency id="Sharpnado.TaskMonitor" version="1.0.1" />
<dependency id="Xamarin.Forms" version="5.0.0.1874" exclude="Build,Analyzers"/>
<dependency id="Sharpnado.TaskMonitor" version="1.0.2" />
<dependency id="Sharpnado.Shadows" version="1.2.0" />
</group>

<group targetFramework="uap10.0.16299">
<dependency id="Xamarin.Forms" version="4.7.0.968" exclude="Build,Analyzers"/>
<dependency id="Sharpnado.TaskMonitor" version="1.0.1" />
<dependency id="Xamarin.Forms" version="5.0.0.1874" exclude="Build,Analyzers"/>
<dependency id="Sharpnado.TaskMonitor" version="1.0.2" />
<dependency id="Sharpnado.Shadows" version="1.2.0" />
<dependency id="CompositionProToolkit" version="1.0.1" />
</group>
Expand Down
16 changes: 8 additions & 8 deletions Tabs/Tabs.Droid/AssemblyInfo.cs
Original file line number Diff line number Diff line change
@@ -1,20 +1,20 @@
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
// Runtime Version:4.0.30319.42000
// Ce code a été généré par un outil.
// Version du runtime :4.0.30319.42000
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// Les modifications apportées à ce fichier peuvent provoquer un comportement incorrect et seront perdues si
// le code est régénéré.
// </auto-generated>
//------------------------------------------------------------------------------

[assembly: System.Reflection.AssemblyDescription("\"Pure\" Xamarin.Forms Tabs (no renderers). Segmented control, bottombar tabs, unde" +
"rlined tabs, scrollable tabs, badges...")]
[assembly: System.Reflection.AssemblyDescription("\"Pure\" Xamarin.Forms Tabs (no renderers). Segmented control, bottombar tabs, mate" +
"rial tabs, underlined tabs, scrollable tabs, badges...")]
[assembly: System.Reflection.AssemblyCompany("Sharpnado")]
[assembly: System.Reflection.AssemblyProduct("Tabs")]
[assembly: System.Reflection.AssemblyCopyright("Copyright © Sharpnado 2021")]
[assembly: System.Reflection.AssemblyFileVersion("2.1.0")]
[assembly: System.Reflection.AssemblyVersion("2.1.0")]
[assembly: System.Reflection.AssemblyFileVersion("2.2.0")]
[assembly: System.Reflection.AssemblyVersion("2.2.0")]
[assembly: System.Reflection.AssemblyTitle("Sharpnado.Tabs.Android")]


18 changes: 9 additions & 9 deletions Tabs/Tabs.UWP/AssemblyInfo.cs
Original file line number Diff line number Diff line change
@@ -1,20 +1,20 @@
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
// Runtime Version:4.0.30319.42000
// Ce code a été généré par un outil.
// Version du runtime :4.0.30319.42000
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// Les modifications apportées à ce fichier peuvent provoquer un comportement incorrect et seront perdues si
// le code est régénéré.
// </auto-generated>
//------------------------------------------------------------------------------

[assembly: System.Reflection.AssemblyDescription("\"Pure\" Xamarin.Forms Tabs (no renderers). Segmented control, bottombar tabs, unde" +
"rlined tabs, scrollable tabs, badges...")]
[assembly: System.Reflection.AssemblyDescription("\"Pure\" Xamarin.Forms Tabs (no renderers). Segmented control, bottombar tabs, mate" +
"rial tabs, underlined tabs, scrollable tabs, badges...")]
[assembly: System.Reflection.AssemblyCompany("Sharpnado")]
[assembly: System.Reflection.AssemblyProduct("Tabs")]
[assembly: System.Reflection.AssemblyCopyright("Copyright © Sharpnado 2020")]
[assembly: System.Reflection.AssemblyFileVersion("2.0.1")]
[assembly: System.Reflection.AssemblyVersion("2.0.1")]
[assembly: System.Reflection.AssemblyCopyright("Copyright © Sharpnado 2021")]
[assembly: System.Reflection.AssemblyFileVersion("2.2.0")]
[assembly: System.Reflection.AssemblyVersion("2.2.0")]
[assembly: System.Reflection.AssemblyTitle("Sharpnado.Tabs.UWP")]


16 changes: 8 additions & 8 deletions Tabs/Tabs.iOS/AssemblyInfo.cs
Original file line number Diff line number Diff line change
@@ -1,20 +1,20 @@
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
// Runtime Version:4.0.30319.42000
// Ce code a été généré par un outil.
// Version du runtime :4.0.30319.42000
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// Les modifications apportées à ce fichier peuvent provoquer un comportement incorrect et seront perdues si
// le code est régénéré.
// </auto-generated>
//------------------------------------------------------------------------------

[assembly: System.Reflection.AssemblyDescription("\"Pure\" Xamarin.Forms Tabs (no renderers). Segmented control, bottombar tabs, unde" +
"rlined tabs, scrollable tabs, badges...")]
[assembly: System.Reflection.AssemblyDescription("\"Pure\" Xamarin.Forms Tabs (no renderers). Segmented control, bottombar tabs, mate" +
"rial tabs, underlined tabs, scrollable tabs, badges...")]
[assembly: System.Reflection.AssemblyCompany("Sharpnado")]
[assembly: System.Reflection.AssemblyProduct("Tabs")]
[assembly: System.Reflection.AssemblyCopyright("Copyright © Sharpnado 2021")]
[assembly: System.Reflection.AssemblyFileVersion("2.1.0")]
[assembly: System.Reflection.AssemblyVersion("2.1.0")]
[assembly: System.Reflection.AssemblyFileVersion("2.2.0")]
[assembly: System.Reflection.AssemblyVersion("2.2.0")]
[assembly: System.Reflection.AssemblyTitle("Sharpnado.Tabs.iOS")]


8 changes: 4 additions & 4 deletions Tabs/Tabs/AssemblyInfo.cs
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
// Runtime Version:4.0.30319.42000
// Ce code a été généré par un outil.
// Version du runtime :4.0.30319.42000
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// Les modifications apportées à ce fichier peuvent provoquer un comportement incorrect et seront perdues si
// le code est régénéré.
// </auto-generated>
//------------------------------------------------------------------------------

Expand Down
2 changes: 1 addition & 1 deletion Tabs/Tabs/MaterialUnderlinedTabItem.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@ private void ToggleIconVisibility(bool visible)

private void UpdateGeometryIcon()
{
var brush = IsSelected ? SelectedTabColor : UnselectedLabelColor;
var brush = new SolidColorBrush(IsSelected ? SelectedTabColor : UnselectedLabelColor);
if (Fill)
{
IconPath.Fill = brush;
Expand Down
2 changes: 1 addition & 1 deletion make-package.ps1
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
$formsVersion = "4.7.0.968"
$formsVersion = "5.0.0.1874"

$orgName = "Sharpnado"
$projectName = "Tabs"
Expand Down

0 comments on commit a2056d8

Please sign in to comment.