Skip to content

Latest commit

 

History

3 Commits

Folders and files

NameName
Last commit message
Last commit date
 
 
 
 
 
 
 
 
 
 

Repository files navigation

blazor-components

Working with blazor I ended up needing some components and decided to write my own for my projects

1. Radio Button

Issue is that there is not two way data binding and I've made a simple radio button that does two-way data binding.

Usage

var _isChecked = false;
<label>
    <RadioButton Name="radioExample" TItem="bool" @bind-Value="_isChecked" CheckedValue="true" /> On
</label>

<label>
    <RadioButton Name="radioExample" TItem="bool" @bind-Value="_isChecked" CheckedValue="false" /> Off
</label>

About

Custom Blazor Components

Resources

Stars

2 stars

Watchers

1 watching

Forks

Releases

Packages

Contributors

Languages