How to add/enabled ticker sound in CupertinoPicker/CupertinoDatePicker for iOS in flutter?

Issue

I am bit new for flutter. I used CupertinoDatePicker but ticker sound missing from it for iOS. so is there any way to enabled it or add it manually when the date-picker is scrolling?
I checked for native iOS date-picker it’s working fine only for flutter it’s not working.
Here is my implementation for date picker,

CupertinoDatePicker(
                    mode: CupertinoDatePickerMode.date,
                    initialDateTime: DateTime.now(),
                    onDateTimeChanged: (_) {},
                    maximumYear: DateTime.now().year,
                   )

and I imported import 'package:flutter/cupertino.dart'; for cupertino component.

Solution

Theres a long time opened issue regarding this. You can track if from there.

Answered By – Miguel Ruivo

Answer Checked By – Senaida (FlutterFixes Volunteer)

Leave a Reply

Your email address will not be published. Required fields are marked *