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

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

Flutter Widgetz #

Features #

  • CustomAutocomplete
  • CustomAvatar
  • CustomBody
  • CustomBottomNavigationBar
  • CustomColorPicker
  • CustomDivider
  • CustomElevatedButton
  • CustomInputCheckbox
  • CustomInputDate
  • CustomInputDropdown
  • CustomPlaceholder
  • CustomScaffold
  • CustomSearchBar
  • CustomSimpleDialogOption
  • SpacedColumn
  • SpacedRow
  • CustomTextFormField

Usage #

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',
          ),
        ],
      ),
    );
  }
}

Additional information #

The generated documentation has a great overview of all that is available.

7
likes
0
pub points
66%
popularity

Publisher

verified publishermj12358.dev

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