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

outdated

A set of Flutter widgets I use in various projects. Including date and checkbox inputs, bottom navigation bar, color picker, divider and more!

example/main.dart

import 'package:flutter/src/widgets/framework.dart';
import 'package:flutter_widgetz/flutter_widgetz.dart';

class MyApp extends StatelessWidget {
  const MyApp({Key? key}) : super(key: key);

  @override
  Widget build(BuildContext context) {
    return CustomScaffold(
      body: CustomBody(
        child: SpacedColumn(
          children: <Widget>[
            const CustomPlaceholder(
              text: 'Hi There',
            ),
            CustomElevatedButton(
              onPressed: () {},
              text: 'A Button',
            ),
          ],
        ),
      ),
    );
  }
}
13
likes
0
points
975
downloads

Publisher

verified publishermj12358.dev

Weekly Downloads

A set of Flutter widgets I use in various projects. Including date and checkbox inputs, bottom navigation bar, color picker, divider and more!

Repository (GitHub)
View/report issues

License

unknown (license)

Dependencies

flutter

More

Packages that depend on flutter_widgetz