Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/serverpod/pixels
https://github.com/serverpod/pixels
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/serverpod/pixels
- Owner: serverpod
- License: bsd-3-clause
- Created: 2022-09-23T15:42:53.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2022-11-18T04:52:56.000Z (about 2 years ago)
- Last Synced: 2023-08-09T13:45:39.837Z (over 1 year ago)
- Language: Dart
- Size: 251 KB
- Stars: 7
- Watchers: 2
- Forks: 5
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# Pixels
Pixels is a minimalistic pixel editor for Flutter. It also comes with a couple
of handy widgets for displaying and manipulating pixel images.![Pixels screenshot](https://github.com/serverpod/pixels/raw/main/screenshot.png)
## Usage
```dart
class MyHomePage extends StatefulWidget {
const MyHomePage({
super.key,
});@override
State createState() => _MyHomePageState();
}class _MyHomePageState extends State {
final _controller = PixelImageController(
palette: const PixelPalette.rPlace(),
width: 64,
height: 64,
);@override
Widget build(BuildContext context) {
return Scaffold(
backgroundColor: Colors.black,
body: Center(
child: PixelEditor(
controller: _controller,
),
),
);
}
}
```## Additional information
This project is sponsored by [Serverpod](https://serverpod.dev) - the missing
server for Flutter.