Dhaval Panchani

Results 5 comments of Dhaval Panchani

autoplayInterval worked for me too.

> project->build settings->search path->Library Search Paths add Code > > ``` > "$(TOOLCHAIN_DIR)/usr/lib/swift/$(PLATFORM_NAME)" > "$(TOOLCHAIN_DIR)/usr/lib/swift-5.0/$(PLATFORM_NAME)" > ``` > > build success you saved my day, Thank you man!

These two things worked for me. 1) Add below code in didFinishLaunching function in appdelegate.m : Check the full code here- https://github.com/xgfe/react-native-datepicker/issues/425#issuecomment-744475142 ``` if (@available(iOS 14, *)) { UIDatePicker *picker...

@uvrik : Sure, here it's. ``` - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions { if (@available(iOS 14, *)) { UIDatePicker *picker = [UIDatePicker appearance]; picker.preferredDatePickerStyle = UIDatePickerStyleWheels; } RCTBridge *bridge = [[RCTBridge...