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

A hex color string converter which can be used in flutter and dart by the ffr-devteam.

example/lib/main.dart

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

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

class MyApp extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'FFR Hex Color DEMO',
      home: MyHomePage(title: 'FFR Hex Color DEMO'),
    );
  }
}

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

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

class _MyHomePageState extends State<MyHomePage> {
  
  @override
  Widget build(BuildContext context) {
    return Scaffold(
      appBar: AppBar(
        title: Text(widget.title),
      ),
      body: Column(
        mainAxisAlignment: MainAxisAlignment.spaceEvenly,
        children: [
          Center(
            child: Container(
              width: 100,
              height: 100,
              color: FFRHexColor('#eb34db'),
            ),
          ),
          Center(
            child: Container(
              width: 100,
              height: 100,
              color: FFRHexColor('#4287f5'),
            ),
          ),
          Center(
            child: Container(
              width: 100,
              height: 100,
              color: FFRHexColor('48f542#'),
            ),
          ),
          Center(
            child: Container(
              width: 100,
              height: 100,
              color: FFRHexColor('#f5c242'),
            ),
          ),
          Center(
            child: Container(
              width: 100,
              height: 100,
              color: FFRHexColor('#a742f5'),
            ),
          ),
        ],
      ),
    );
  }
}
0
likes
130
pub points
38%
popularity

Publisher

unverified uploader

A hex color string converter which can be used in flutter and dart by the ffr-devteam.

Homepage
Repository (GitHub)
View/report issues

Documentation

API reference

License

BSD-3-Clause (LICENSE)

Dependencies

flutter

More

Packages that depend on ffr_hex_color