FBootstrapCoreMvc 1.0.0-alpha.202212300318

This is a prerelease version of FBootstrapCoreMvc.
dotnet add package FBootstrapCoreMvc --version 1.0.0-alpha.202212300318
NuGet\Install-Package FBootstrapCoreMvc -Version 1.0.0-alpha.202212300318
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="FBootstrapCoreMvc" Version="1.0.0-alpha.202212300318" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add FBootstrapCoreMvc --version 1.0.0-alpha.202212300318
#r "nuget: FBootstrapCoreMvc, 1.0.0-alpha.202212300318"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install FBootstrapCoreMvc as a Cake Addin
#addin nuget:?package=FBootstrapCoreMvc&version=1.0.0-alpha.202212300318&prerelease

// Install FBootstrapCoreMvc as a Cake Tool
#tool nuget:?package=FBootstrapCoreMvc&version=1.0.0-alpha.202212300318&prerelease

FBootstrapCoreMvc

Overview

This library provides easier fluent implementation of Bootstrap UI (v5.2) library. (development still ongoing)

Example Usages

@Html.Bootstrap().Heading1("Form")
using (var form = Html.Bootstrap().Form("Submit", "Home", FormMethod.Post).Begin())
{
	@form.InputFor(model => model.Name).SetMaxLength(50).IsRequired()
	@form.InputFor(model => model.Surname).SetMaxLength(50).IsRequired()
	@form.InputFor(model => model.Age).SetType(FormInputType.Number).IsRequired()
	@form.InputFor(model => model.Email).SetType(FormInputType.Email).IsRequired()
	@form.TextAreaFor(model => model.Bio).SetMaxLength(200).IsRequired()
	@form.SelectFor(model => model.Gender, genderOpts)
	@form.CheckFor(model => model.Married)
	@form.PasswordFor(model => model.Password).SetMaxLength(16).IsRequired()
	@form.Submit()
}
    @Html.Bootstrap().Heading1("Pagination-Example-3")
    @using (var pagination = Html.Bootstrap().Pagination().SetSize(ComponentSize.Large).JustifyContent(JustifyContent.End).Begin())
    {
        @pagination.PageItem("1")
        @pagination.PageItem("2").SetActive()
        @pagination.PageItem("3").SetDisabled()
        @pagination.PageItem("4")
    }
Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
.NET Core netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.1 is compatible. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.0.0-alpha.202212300318 113 12/30/2022
1.0.0-alpha.202212291727 109 12/29/2022