Bootstrap
Bootstrap is the world's most popular CSS framework for building responsive, mobile-first sites with a comprehensive grid system and pre-built components.
Oorian Extension
The Oorian extension for Bootstrap is under development and will be available with the framework release.
Implementation priority based on popularity, API complexity, and user demand.
The version of Bootstrap that this extension supports.
The licensing model for Bootstrap. Check their official website for full license details.
Oorian extensions expose the complete Bootstrap API through type-safe Java methods.
Key Features
Usage Example
See how to use Bootstrap with Oorian in pure Java.
Oorian's Bootstrap extension provides ready-to-use components styled with Bootstrap CSS. Here's a simple dismissible success alert:
Java Code
// Create a dismissible success alert with BsAlert
BsAlert alert = new BsAlert("Your changes have been saved successfully!")
.setVariant(Variant.SUCCESS)
.setDismissible(true);
container.addElement(alert);
// Create alerts with different variants
BsAlert info = new BsAlert("This is an informational message.")
.setVariant(Variant.INFO);
container.addElement(info);
BsAlert warning = new BsAlert("Please review before continuing.")
.setVariant(Variant.WARNING);
container.addElement(warning);Result
Component Library Demos
Explore Bootstrap components with interactive examples.
Bootstrap provides a comprehensive set of pre-styled components. Select a category below to explore interactive demos:
Buttons
Button styles, variants, sizes, states, and button groups with outline and solid options
Cards
Flexible card containers with headers, bodies, footers, images, shadows, and border variants
Alerts
Contextual alert messages with variants, dismissible options, and additional content
Badges & Labels
Badges for counts, labels, and status indicators with pill and color variants
Progress Bars
Progress indicators with variants, striped, animated, and labeled options
Ready to Use Bootstrap?
Oorian makes it easy to integrate Bootstrap into your Java web applications with type-safe extensions and real-time updates.