Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/aprosail/center-text

Center text placeholder for a better Flutter development experience.
https://github.com/aprosail/center-text

debug debugging-tool flutter inspector placeholder prober

Last synced: 3 months ago
JSON representation

Center text placeholder for a better Flutter development experience.

Awesome Lists containing this project

README

        

# Center text

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

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