Blazorise Bulma Usage
Quickly install Blazorise with Bulma, one of the world's most popular Blazor UI framework.
Note: Before continuing please make sure that you already have a Blazor project created.
If not please go to the official Blazor website and learn how to create one.
Install Packages
First step is to install a Bulma provider for Blazorise:
Install-Package Blazorise.Bulma
You also need to install the icon package:
Install-Package Blazorise.Icons.FontAwesome
Add Static Files
The next step is to change your
index.html
or _Layout.cshtml
/ _Host.cshtml
file and include the CSS and JS source files:
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bulma@0.9.1/css/bulma.min.css" /> <link href="_content/Blazorise/blazorise.css" rel="stylesheet" /> <link href="_content/Blazorise.Bulma/blazorise.bulma.css" rel="stylesheet" /> <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.15.4/css/all.css" />
Note: Don't forget to remove Bootstrap JS and CSS files that comes with the default Blazor project template.
Add Imports
In your main _Imports.razor add:
@using Blazorise
Register Services
Add the following lines to the relevant sections of
Program.cs
.
using Blazorise; using Blazorise.Bulma; using Blazorise.Icons.FontAwesome; builder.Services .AddBlazorise( options => { options.Immediate = true; } ) .AddBulmaProviders() .AddFontAwesomeIcons();
PWA & Offline Support (optional)
For information about PWAs & offline support, please take a look at our PWA docs.