booster 0.0.5 copy "booster: ^0.0.5" to clipboard
booster: ^0.0.5 copied to clipboard

A collection of useful widgets, extensions and utilities to boost Flutter app development.

example/lib/main.dart

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

void main() {
  runApp(const MainApp());
}

class MainApp extends StatelessWidget {
  const MainApp({super.key});

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      home: Scaffold(
        body: SafeArea(
          child: SingleChildScrollView(
            child: Column(
              crossAxisAlignment: CrossAxisAlignment.stretch,
              children: [
                const Text('Hello World!'),
                const Gap(8),
                Container(
                  height: 100,
                  width: 100,
                  color: 'bada55'.toColor,
                ),
              ],
            ),
          ),
        ),
      ),
    );
  }
}
2
likes
150
points
28
downloads

Publisher

verified publishercodingmitra.com

Weekly Downloads

A collection of useful widgets, extensions and utilities to boost Flutter app development.

Repository (GitHub)
View/report issues

Topics

#flutter #widget #extensions #utilities

Documentation

API reference

Funding

Consider supporting this project:

buymeacoffee.com

License

MIT (license)

Dependencies

flutter

More

Packages that depend on booster