An open API service indexing awesome lists of open source software.

https://github.com/gurpreetraju/shineblazorcomponents

A blazor components library
https://github.com/gurpreetraju/shineblazorcomponents

blazor ui-components

Last synced: 6 months ago
JSON representation

A blazor components library

Awesome Lists containing this project

README

          

# Shine Blazor
![](https://github.com/GurpreetRaju/ShineBlazorComponents/blob/main/ShineBlazor.Components.Demo/wwwroot/images/shine.png)

Build responsive and dynamic sites faster with Shine Blazor.

Shine Blazor library is based on [Bootstrap](https://getbootstrap.com/) css. It uses very little javascript.

Demo: https://gurpreetraju.github.io/ShineBlazorComponents/

### Quick Installation Guide
Install Package
```
dotnet add package ShineBlazor.Components --version 0.2.4
```
Add the following to `_Imports.razor`
```razor
@using ShineBlazor.Components
```
Add the following to the `MainLayout.razor` or `App.razor`
```razor

```
Add the following to your HTML `head` section, it's either `index.html` or `_Layout.cshtml`/`_Host.cshtml`/`App.razor` depending on whether you're running WebAssembly or Server
```razor

```
Next, add the following to the default Blazor script at the end of the `body`
```razor

```
If you want to use infinite scroll component also all the following script
```razor

```

Add the following to the relevant sections of `Program.cs`
```c#
using ShineBlazor.Components.Services;
```
```c#
builder.Services.AddScoped();
```