Custom.Maui.Tabview 1.0.1

dotnet add package Custom.Maui.Tabview --version 1.0.1                
NuGet\Install-Package Custom.Maui.Tabview -Version 1.0.1                
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Custom.Maui.Tabview" Version="1.0.1" />                
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Custom.Maui.Tabview --version 1.0.1                
#r "nuget: Custom.Maui.Tabview, 1.0.1"                
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install Custom.Maui.Tabview as a Cake Addin
#addin nuget:?package=Custom.Maui.Tabview&version=1.0.1

// Install Custom.Maui.Tabview as a Cake Tool
#tool nuget:?package=Custom.Maui.Tabview&version=1.0.1                

Maui.TabView

BuildStatus

This Package support in Maui all platforms

 Create the Customized tabbed page or view using Maui.Tabview control.

Maui.TabView Features

  • Tabbed Page and Header Customization. (Tab Header Height/Color/Content).
  • Tab contet Page customization - We can create a MAUI view control as content or contentpage
  • Tab Header Positioning (Top/Bottom)
  • Tab page/content change events - Event will trigger while selecting the tab. you can customize your header selections.
  • Add tab view to any layouts like (Stack/absolute or grid etc.)

New Features!

  • IsVisble Support added for TabHeader.
  • SelectIndex Support added.

Tabbed Header Customization Sample Code

  • Add the header using title property.
  • Add the Header using Header Content property.
  //Assign the Content to tabheader
  Label label = new Label{Text="Tab1"};
  PageHeader1.Content = label;
  //Use the Title for Default Header
  PageHeader1.Title = "Tab1";

Tabbed Page content Customization

  • Add the tabview content by using content.
  • Add the tabview content by using custom content page.
  //content
  Label label = new Label{Text="Tab Page content"};
  Page1.Content = label;
  //Assign the page to tabview
  ContentPage samplePage = new ContentPage();
  Page1.CustomContentPage = samplePage;

Sample Link : TabviewSample

Output

TabViewResult

Product Compatible and additional computed target framework versions.
.NET net8.0-android34.0 is compatible.  net8.0-ios17.5 is compatible.  net8.0-maccatalyst17.5 is compatible.  net8.0-windows10.0.19041 is compatible. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.0.1 91 10/25/2024
1.0.0 153 8/25/2024

Create the Customized tabbed page or view using Maui.Tabview control.