Skip to content

Commit

Permalink
update README
Browse files Browse the repository at this point in the history
  • Loading branch information
yagizhanNY committed Oct 4, 2023
1 parent 3dd8620 commit bd3e8d6
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -132,6 +132,7 @@ public partial class Index
- [Tile](#tile)
- [Time Picker](#time-picker)
- [Toast](#toast)
- [Toggle Buttons](#toggle-buttons) **(since v0.4.0)**
- [Toggle](#toggle)
- [Tooltip](#tooltip)
- [Tree](#tree)
Expand Down Expand Up @@ -936,6 +937,20 @@ ToastConfig config = new ToastConfig()
toast.ShowToast("test message", "info");
```

## Toggle Buttons

```razor
<ToggleButton>Normal</ToggleButton>
<ToggleButton Id="toggle-btn-1" Pressed="true">Pressed</ToggleButton>
<IconToggleButton Outline="true" Icon="checkboxes"></IconToggleButton>
<IconToggleButton
Outline="true"
Icon="checkboxes"
Pressed="true"
></IconToggleButton>
```

## Toggle

```html
Expand Down

0 comments on commit bd3e8d6

Please sign in to comment.