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

A set of Flutter widgets I use in various projects. Including date and checkbox inputs, 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: SpacedColumn(
        children: <Widget>[
          const CustomPlaceholder(
            text: 'Hi There',
          ),
          CustomElevatedButton(
            onPressed: () {},
            text: 'A Button',
          ),
        ],
      ),
    );
  }
}
7
likes
0
pub points
73%
popularity

Publisher

verified publishermj12358.dev

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

Repository (GitHub)
View/report issues

License

unknown (license)

Dependencies

flutter

More

Packages that depend on flutter_widgetz