Description

A new Flutter package that provides native iOS Color Picker cloned UI for all platforms

This package supports all platforms listed below.

platforms:

  • linux
  • macos
  • web
  • windows
  • iOS
  • Android

Features

Usage


ElevatedButton(
onPressed: () {
showModalBottomSheet(
backgroundColor: Colors.transparent,
barrierColor: Colors.transparent,
isScrollControlled: true,
context: context,
  builder: (context) {
        return IosColorPicker(
        onColorSelected: (Color value) {
          setState(() {
            backgroundColor = value;
          });
          },);
          });
            },
    child: Text("SelectColor"),
),

🧪 Example

Please run the app in the example/ folder to start playing!

Additional information

ios_color_picker