Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/deb-95/pokeball_widget

Pokeball widget for Flutter apps
https://github.com/deb-95/pokeball_widget

dart flutter pokeball pokemon

Last synced: 29 days ago
JSON representation

Pokeball widget for Flutter apps

Awesome Lists containing this project

README

        

# pokeball_widget
A Pokeball CustomPaint widget to draw a simple minimal pokeball.

## Usage
For more usages check the examples folder
```dart
class MyApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
return MaterialApp(
home: Builder(
builder: (context) => Scaffold(
body: Center(
// Squared container for the pokeball
child: SizedBox(
height: MediaQuery.of(context).size.width / 2,
width: MediaQuery.of(context).size.width / 2,
child: PokeBallWidget(
color: Theme.of(context).textTheme.bodyText2?.color ?? Colors.black,
),
),
),
),
),
);
}
}
```
## Examples