Quick Start
- Install via NuGet
dotnet add package KbrKiras.MauiComponents -Version 1.0.2
Install-Package KbrKiras.MauiComponents -Version 1.0.2
....
xmlns:mauicomponents="clr-namespace:MauiComponents;assembly=MauiComponents"
....
<Shell.TitleView>
<mauicomponents:NavBar>
<mauicomponents:NavBar.BindingContext>
<models:NavBarModel Title="Test" Icon="dotnet_bot.svg"></models:NavBarModel>
</mauicomponents:NavBar.BindingContext>
</mauicomponents:NavBar>
</Shell.TitleView>
<mauicomponents:TextInput>
<mauicomponents:TextInput.BindingContext>
<models:EntryModel ShowIconWhenEmpty="True" Icon="search.png" Placeholder="Search"></models:EntryModel>
</mauicomponents:TextInput.BindingContext>
</mauicomponents:TextInput>