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
110
pub points
0%
popularity

Publisher

unverified uploader

Mad color collections for the lazy.

Homepage

Documentation

API reference

License

MIT (LICENSE)

Dependencies

flutter

More

Packages that depend on madcolor