Skip to content
This repository was archived by the owner on Jun 28, 2024. It is now read-only.

aprosail/center-text

 
 

Repository files navigation

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;
  }
}

About

Center text placeholder for a better Flutter development experience.

Topics

Resources

License

Stars

Watchers

Forks