pixels

Last updated:

0 purchases

pixels Image
pixels Images
Add to Cart

Description:

pixels

Pixels #
Pixels is a minimalistic pixel editor for Flutter. It also comes with a couple
of handy widgets for displaying and manipulating pixel images.

Usage #
class MyHomePage extends StatefulWidget {
const MyHomePage({
super.key,
});

@override
State<MyHomePage> createState() => _MyHomePageState();
}

class _MyHomePageState extends State<MyHomePage> {
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,
),
),
);
}
}
copied to clipboard
Additional information #
This project is sponsored by Serverpod - the missing
server for Flutter.

License:

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Files In This Product:

Customer Reviews

There are no reviews.