flutter_hex_color 1.0.1 copy "flutter_hex_color: ^1.0.1" to clipboard
flutter_hex_color: ^1.0.1 copied to clipboard

discontinued
outdated

HexColor extend Color class to take hex coded value.

flutter_hex_color #

HexColor extend Color class to take hex coded value.

Screenshots #

screenshot

How To Use #

  1. add flutter_hex_color: <latest> as dependencies in pubspec.yaml
  2. run flutter pub get into app folder
  3. use like HexColor('000000');

Example #

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

void main() => runApp(MyApp());

class MyApp extends StatefulWidget {
  @override
  _MyAppState createState() => _MyAppState();
}

class _MyAppState extends State<MyApp> {
  var color = HexColor('FFFFFF');
  @override
  void initState() {
    super.initState();
  }

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      home: Scaffold(
        appBar: AppBar(
          title: Center(
            child: Text(
              'HexColor',
              style: TextStyle(color: color),
            ),
          ),
        ),
        body: Center(
          child: Column(
            children: <Widget>[
              RaisedButton(
                color: HexColor('000000'),
                onPressed: () {
                  color = HexColor('000000');
                  setState(() {});
                },
              ),
              RaisedButton(
                color: HexColor('FFFFFF'),
                onPressed: () {
                  color = HexColor('FFFFFF');
                  setState(() {});
                },
              ),
              RaisedButton(
                color: HexColor('ffae42'),
                onPressed: () {
                  color = HexColor('ffae42');
                  setState(() {});
                },
              ),
              RaisedButton(
                color: HexColor('00FF00'),
                onPressed: () {
                  color = HexColor('00FF00');
                  setState(() {});
                },
              ),
            ],
          ),
        ),
      ),
    );
  }
}

Complete Example #

Author #

Mohamed Sayed

  • Fork   Star   Watches
  • Plugin   Example

My Plugins #

14
likes
0
pub points
83%
popularity

Publisher

verified publishermsayed.net

HexColor extend Color class to take hex coded value.

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

flutter

More

Packages that depend on flutter_hex_color