madcolor 0.0.3 copy "madcolor: ^0.0.3" to clipboard
madcolor: ^0.0.3 copied to clipboard

Mad color collections for the lazy.

example/lib/main.dart

import 'package:flutter/material.dart';
import 'package:madcolor/pixel_art/vinik24.dart';

void main() {
  runApp(const MyApp());
}

class MyApp extends StatelessWidget {
  const MyApp({Key? key}) : super(key: key);

  @override
  Widget build(BuildContext context) {
    return const MaterialApp(
      debugShowCheckedModeBanner: false,
      home: MadColorGenerator(),
    );
  }
}

class MadColorGenerator extends StatelessWidget {
  const MadColorGenerator({Key? key}) : super(key: key);

  @override
  Widget build(BuildContext context) {
    return Scaffold(
      body: Column(
        children: [
          Center(
            child: Container(
              width: 36,
              height: 36,
              
            ),
          )
        ],
      ),
    );
  }
}
1
likes
130
points
27
downloads

Publisher

unverified uploader

Weekly Downloads

Mad color collections for the lazy.

Homepage

Documentation

API reference

License

MIT (license)

Dependencies

flutter

More

Packages that depend on madcolor