A Modern UI Library / Widget Collection for Flutter app. Bootstrap for Flutter

Features

  • Dark and Light themed ready made widgets

Getting started

Just install the Package and Bloom and then dot (.) You are ready to go.

Usage

For Rapid UI Development for Flutter Apps

import 'package:bloom/bloom.dart';
import 'package:flutter/material.dart';

import 'package:get/get.dart';
import '../controllers/home_controller.dart';

class HomeView extends GetView<HomeController> {
  const HomeView({Key? key}) : super(key: key);
  @override
  Widget build(BuildContext context) {
    return Scaffold(
      appBar: AppBar(
        title: const Text('HomeView'),
        centerTitle: true,
      ),
      body: Padding(
        padding: const EdgeInsets.all(8.0),
        child: Column(
          children: [

            // SearchBox(),
            Padding(
              padding: const EdgeInsets.all(8.0),
              child: Center(
                child: Bloom.searchBox(hintText: "Your Custom Text Here", icon: Icons.add),
              ),
            ),

            // Clip(),
            Padding(
              padding: const EdgeInsets.all(8.0),
              child: Center(
                child: Bloom.clip(text: "Example Tag"),
              ),
            ),

            // Modal(),
            Padding(
              padding: const EdgeInsets.all(8.0),
              child: Center(
                child: Bloom.modal(
                  height: 300,
                ),
              ),
            ),

            //CircleAvatar
            Padding(
              padding: const EdgeInsets.all(8.0),
              child: Center(
                child: Bloom.circleAvatar(
                  image: NetworkImage("https://i.pravatar.cc/300"),
                ),
              ),
            ),


          ],
        ),
      ),
    );
  }
}

Additional information

This is a work in progress. Please feel free to contribute.