ios_color_picker 1.0.0+2
ios_color_picker: ^1.0.0+2 copied to clipboard
A new Flutter package that provides native iOS Color Picker cloned UI for all platforms Web, Android, iOS, also provides native iOS picker for iOS Only
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!