frostcolor 1.0.0
frostcolor: ^1.0.0 copied to clipboard
Using the hex code makes it so the colors can be used in Flutter.

Developers #
- Sinan UYĞUN - Developer
Contact #
Project Details #
Introduction #
What is FrostColor?
It puts the color hex codes into a form that can be used on the flutter. The package includes three different versions. One version includes hex code checks. The version without an optional hex code checks. The package includes three versions:
- One version includes hex code checks.
- One version doesn't include hex code checks.
- One version doesn't include any functions.
Why FrostColor?
- You can get different versions in a single package.
- Hex code controls are available.
- It's open source.
- It runs quickly.
- The code is simple, and the documentation is easy to understand.
Installation #
Add the following dependencies to your pubspec.yaml file:
dependencies:
frostcolor: [latest-version]
Include the package using the bash command.
$ flutter pub add frostcolor
Usage #
After you install it, here's how to use Flutter. The package includes three different versions.
FrostColor #
The version with hex codes verifies the color.
import 'package:frostcolor/frostcolor.dart';
final frostcolor = FrostColor();
final colorexample = frostcolor.frostColor( hex: '#000000');
final stringexample = frostcolor.frostSTRColor( hex: '#000000');
Fast FrostColor #
Hex code checks are not provided. There are no controls for fast operation.
import 'package:frostcolor/frostcolor.dart';
final frostcolor = FrostColor();
final colorexample = frostcolor.ffColor( hex: '#000000')
Direct FrostColor #
It lets you convert directly by making a call without using a function.
import 'package:frostcolor/frostcolor.dart';
final colorexample = DFColor( hex: '#000000');
Extension #
Build Context makes it easy for you to get things done.
FrostColor #
import 'package:frostcolor/frostcolor.dart';
final stringexample = context.frostSTRColor( hex: '#000000');
final colorexample = context.frostColor( hex: '#000000');
Fast FrostColor #
import 'package:frostcolor/frostcolor.dart';
final fastexample = context.ffColor( hex: '#000000')