Home / Extensions / Bootstrap
CSS Frameworks

Bootstrap

CSS Framework

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

Extension Status
Coming Soon

The Oorian extension for Bootstrap is under development and will be available with the framework release.

Priority
Rank #4

Implementation priority based on popularity, API complexity, and user demand.

Supported Version
5.3

The version of Bootstrap that this extension supports.

Licensing
Open Source (MIT)

The licensing model for Bootstrap. Check their official website for full license details.

Integration
Full API Access

Oorian extensions expose the complete Bootstrap API through type-safe Java methods.

Key Features

Responsive grid system
Pre-built components
Utility classes
JavaScript plugins
Sass variables
Customizable themes
Extensive documentation

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
java
// 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

Interactive Demo

Explore Bootstrap capabilities with these interactive examples.

Explore the full range of Bootstrap components available through the Oorian extension:

Buttons
Cards
Simple Card
A basic card with header text. Cards are flexible containers for content.
Shadow Card
This card has a shadow effect applied for visual depth.
Colored Border
Cards can have colored borders to indicate status or category.
Badges & Progress
PrimarySecondarySuccessDangerWarningInfo
Pill PrimaryPill SuccessPill Danger

Default Progress: 25%

Success Progress with Label: 50%

50%

Striped Progress: 75%

Animated Striped Progress: 90%

Ready to Use Bootstrap?

Oorian makes it easy to integrate Bootstrap into your Java web applications with type-safe extensions and real-time updates.