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

A set of Flutter widgets I use in various projects.

Flutter Widgetz #

Features #

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

Getting started #

flutter_widgetz: ^0.0.1

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
68%
popularity

Publisher

verified publishermj12358.dev

A set of Flutter widgets I use in various projects.

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

flutter

More

Packages that depend on flutter_widgetz