Bootstrap 4 Components for Blazor Framework
BlazorStrap is a set of Bootstrap 4/5 components for Blazor that can be easily installed using NuGet packages. This tool provides components for both Blazor WebAssembly and Blazor Server-Side applications to enhance the user interface design and functionality.
nuget
.nuget
.<head>
, add:<link href="YourAssemblyName.styles.css" rel="stylesheet">
<link href="path_to_bootstrap.min.css" rel="stylesheet" integrity="if_needed">
<body>
, add:<script src="_content/BlazorStrap/popper.min.js"></script>
builder.Services.AddBlazorStrap();
@using BlazorStrap.V5
nuget
.nuget
.<head>
, add:<link href="YourAssemblyName.styles.css" rel="stylesheet">
<link href="path_to_bootstrap.min.css" rel="stylesheet" integrity="if_needed">
<body>
, add:<script src="_content/BlazorStrap/popper.min.js"></script>
services.AddBlazorStrap();
@using BlazorStrap.V5
BlazorStrap is a comprehensive tool that provides Bootstrap components for Blazor applications, with support for both Bootstrap 4 and Bootstrap 5 versions. By following the installation steps outlined above, users can easily enhance the UI and functionality of their Blazor WebAssembly and Blazor Server-Side projects.