color_system 0.0.2 copy "color_system: ^0.0.2" to clipboard
color_system: ^0.0.2 copied to clipboard

outdated

A plugin to help you handle hex colours in your application.

example/lib/main.dart

import 'package:color_system/color_service.dart';
import 'package:color_system/inbuilt_colors.dart';
import 'package:flutter/material.dart';

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

class MyApp extends StatelessWidget {
  const MyApp({super.key});

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      home: Scaffold(
        backgroundColor: SystemColors.color200,
        appBar: AppBar(
          backgroundColor: HexColor('#fffff'),
          title: const Text('Plugin example app'),
        ),
        body: const Center(
          child: Text('Colors System'),
        ),
      ),
    );
  }
}
4
likes
0
points
17
downloads

Publisher

unverified uploader

Weekly Downloads

A plugin to help you handle hex colours in your application.

Homepage

License

unknown (license)

Dependencies

flutter, plugin_platform_interface

More

Packages that depend on color_system

Packages that implement color_system