* feat: integrate DateTimePickerAndroid for date/time selection - Added @react-native-community/datetimepicker dependency for native date/time picker functionality. - Replaced modal-based date/time picker implementation with DateTimePickerAndroid for improved user experience. - Updated RescheduleScreen to utilize the new date/time picker methods, enhancing the selection process and ensuring better styling consistency. * feat: add LimitsTabDatePicker component for date selection - Introduced a new LimitsTabDatePicker component utilizing DateTimePickerAndroid for improved date selection on Android. - Implemented date parsing and formatting for user-friendly display. - Enhanced user interaction with a pressable element to open the date picker. * feat: add EditAvailabilityOverrideScreen for managing schedule overrides - Introduced EditAvailabilityOverrideScreen component to allow users to create and edit availability overrides. - Implemented date and time selection using DateTimePickerAndroid for improved user experience. - Added functionality to handle existing overrides, including editing and deleting options. - Enhanced user interaction with clear alerts for success and error states during save operations. * fixed lint warnings, info * address cubics comments --------- Co-authored-by: Dhairyashil <dhairyashil10101010@gmail.com>
89 lines
2.2 KiB
JSON
89 lines
2.2 KiB
JSON
{
|
|
"expo": {
|
|
"name": "Calcom",
|
|
"slug": "calcom-companion",
|
|
"scheme": "expo-wxt-app",
|
|
"version": "1.0.0",
|
|
"orientation": "portrait",
|
|
"icon": "./assets/icon.png",
|
|
"userInterfaceStyle": "light",
|
|
"newArchEnabled": true,
|
|
"splash": {
|
|
"image": "./assets/splash-icon.png",
|
|
"resizeMode": "contain",
|
|
"backgroundColor": "#ffffff"
|
|
},
|
|
"ios": {
|
|
"supportsTablet": false,
|
|
"deploymentTarget": "18.0",
|
|
"bundleIdentifier": "com.cal.companion",
|
|
"infoPlist": {
|
|
"ITSAppUsesNonExemptEncryption": false
|
|
},
|
|
"entitlements": {
|
|
"com.apple.developer.default-data-protection": "NSFileProtectionComplete"
|
|
},
|
|
"icon": "./assets/cal-logo.icon"
|
|
},
|
|
"android": {
|
|
"adaptiveIcon": {
|
|
"foregroundImage": "./assets/adaptive-icon.png",
|
|
"backgroundColor": "#ffffff"
|
|
},
|
|
"edgeToEdgeEnabled": true,
|
|
"package": "com.calcom.companion",
|
|
"softwareKeyboardLayoutMode": "pan",
|
|
"usesCleartextTraffic": false
|
|
},
|
|
"web": {
|
|
"favicon": "./assets/favicon.png",
|
|
"bundler": "metro"
|
|
},
|
|
"extra": {
|
|
"eas": {
|
|
"projectId": "f5e97f6f-1e95-44ac-bfa4-f737ef90f198"
|
|
}
|
|
},
|
|
"owner": "calcoms-organization",
|
|
"plugins": [
|
|
"expo-router",
|
|
"expo-secure-store",
|
|
"expo-web-browser",
|
|
"expo-image",
|
|
[
|
|
"expo-splash-screen",
|
|
{
|
|
"backgroundColor": "#ffffff",
|
|
"image": "./assets/splash-icon.png",
|
|
"imageWidth": 200
|
|
}
|
|
],
|
|
[
|
|
"@react-native-community/datetimepicker",
|
|
{
|
|
"android": {
|
|
"datePicker": {
|
|
"colorAccent": {
|
|
"light": "#000000"
|
|
},
|
|
"textColorPrimary": {
|
|
"light": "#000000"
|
|
}
|
|
},
|
|
"timePicker": {
|
|
"background": { "light": "#ffffff" },
|
|
"numbersBackgroundColor": { "light": "#ffffff" },
|
|
"headerBackground": { "light": "#000000" },
|
|
"numbersSelectorColor": { "light": "#000000" }
|
|
}
|
|
}
|
|
}
|
|
]
|
|
],
|
|
"experiments": {
|
|
"typedRoutes": true,
|
|
"reactCompiler": true
|
|
}
|
|
}
|
|
}
|