How to build a picker wheel similar as the Calendar App?

How to build the below UI using SwiftUI? I tried to use Picker with wheel style, but it is not the same as the screenshot.

The screenshot came from the iOS built-in calendar app.

  1. Add a new calendar event
  2. Click "Repeat"
  3. Choose "Custom"
  4. Click "Every day"
  5. The required picker wheel will be displayed
                Picker("Every", selection: $interval) {
                    ForEach(1..<366) { interval in
                        Text("\(interval)").tag(interval)
                    }
                }
                .pickerStyle(.wheel)

How to build a picker wheel similar as the Calendar App?
 
 
Q