booster 0.0.3 booster: ^0.0.3 copied to clipboard
A collection of useful widgets, extensions and utilities to boost Flutter app development.
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 const MaterialApp(
home: Scaffold(
body: Center(
child: Column(
mainAxisSize: MainAxisSize.min,
children: [
Text('Hello World!'),
Gap(8),
Text('Hello World!'),
],
),
),
),
);
}
}