Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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.
- Host: GitHub
- URL: https://github.com/aprosail/center-text
- Owner: aprosail
- License: mit
- Created: 2024-05-12T05:57:05.000Z (8 months ago)
- Default Branch: main
- Last Pushed: 2024-05-16T17:05:52.000Z (8 months ago)
- Last Synced: 2024-05-20T11:56:07.337Z (8 months ago)
- Topics: debug, debugging-tool, flutter, inspector, placeholder, prober
- Language: Dart
- Homepage: https://pub.dev/packages/center_text
- Size: 24.4 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
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;
}
}
```