pick_color_from_camera 0.0.1
pick_color_from_camera: ^0.0.1 copied to clipboard
As the name suggests "Pick Color From Camera" lets its users to obtain the RGB(hex) color code of any object.It opens the back camera and shows color code of the object that comes in focus within the [...]
Pick Color Form Camera #
A flutter plugin to detect colors using camera and provides its code to you.
DEMO PREVIEW #

Installation #
Add pick_color_from_camera as a dependency in your pubspec.yaml file
Getting Started #
- Import the package in your Dart file:
import 'package:pick_color_from_camera/pick_color_from_camera.dart';
- Get Color Code by calling the
pickColormethod:
String? colorCode = await PickColorFromCamera.pickColor();