center_text 0.1.0 copy "center_text: ^0.1.0" to clipboard
center_text: ^0.1.0 copied to clipboard

A placeholder for better Flutter development experience, that you don't need to make all children required.

Center text #

A placeholder for better Flutter development experience, that you don't need to make your child required everywhere in your code base.

class Example extends StatelessWidget {
  const Example({
    super.key,
    // Other properties...
    this.child = const CenterText('example widget'),
  });

  // Other properties...
  final Widget child;

  @override
  Widget build(BuildContext context) {
    // Replace here with your code.
    return child;
  }
}
0
likes
140
pub points
0%
popularity

Publisher

unverified uploader

A placeholder for better Flutter development experience, that you don't need to make all children required.

Repository (GitHub)
View/report issues

Topics

#debug #placeholder #flutter-widget

Documentation

API reference

License

MIT (license)

Dependencies

flutter, inherit, wrap

More

Packages that depend on center_text