colour 1.0.5 copy "colour: ^1.0.5" to clipboard
colour: ^1.0.5 copied to clipboard

An easy way to use color in flutter (with Normal, HEX, RGB, ARGB, or RGBO format).

example/lib/main.dart

import 'package:colour/colour.dart';
import 'package:flutter/material.dart';

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

class MyApp extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'Flutter Demo',
      theme: ThemeData(
        primarySwatch: Colors.blue,
        visualDensity: VisualDensity.adaptivePlatformDensity,
      ),
      home: MyHomePage(title: 'Flutter Demo Home Page'),
    );
  }
}

class MyHomePage extends StatefulWidget {
  MyHomePage({Key? key, required this.title}) : super(key: key);

  final String title;

  @override
  _MyHomePageState createState() => _MyHomePageState();
}

class _MyHomePageState extends State<MyHomePage> {
  int _counter = 0;

  void _incrementCounter() {
    setState(() {
      _counter++;
    });
  }

  @override
  Widget build(BuildContext context) {
    return Scaffold(
      appBar: AppBar(
        title: Text(widget.title),
      ),
      body: Center(
        child: Column(
          mainAxisAlignment: MainAxisAlignment.center,
          children: <Widget>[
            Text(
              'You have pushed the button this many times:',
              style: TextStyle(
                color: Colour('424242'),
              ),
            ),
            Text(
              '$_counter',
              style: Theme.of(context).textTheme.headline4,
            ),
            Container(
              width: 72,
              height: 56,
              color: Colour('#38ef7d'),
            ),
            SizedBox(height: 10),
            Container(
              width: 72,
              height: 56,
              color: Colour('#f80759', 0.75),
            ),
          ],
        ),
      ),
      floatingActionButton: FloatingActionButton(
        onPressed: _incrementCounter,
        tooltip: 'Increment',
        child: Icon(Icons.add,
            color: Colour('efefef', 0.9)), // Custom color using Colour
      ), // This trailing comma makes auto-formatting nicer for build methods.
    );
  }
}
7
likes
150
points
157
downloads

Documentation

API reference

Publisher

unverified uploader

Weekly Downloads

An easy way to use color in flutter (with Normal, HEX, RGB, ARGB, or RGBO format).

Repository (GitHub)
View/report issues

License

BSD-2-Clause (license)

Dependencies

flutter

More

Packages that depend on colour