react-native-mytatva-rn-sdk 1.2.4 → 1.2.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/android/app/build.gradle +6 -0
- package/android/build.gradle +85 -5
- package/android/gradle.properties +1 -1
- package/android/libs/algorithm-release.aar +0 -0
- package/android/libs/library_zxing-release.aar +0 -0
- package/android/settings.gradle +1 -0
- package/android/src/main/AndroidManifest.xml +40 -2
- package/android/src/main/AndroidManifestNew.xml +127 -57
- package/android/src/main/java/cgmblelib/Enum/enumDevice.java +48 -0
- package/android/src/main/java/cgmblelib/Enum/enumError.java +102 -0
- package/android/src/main/java/cgmblelib/Enum/enumGlucoseStatus.java +99 -0
- package/android/src/main/java/cgmblelib/Enum/enumSound.java +54 -0
- package/android/src/main/java/cgmblelib/Enum/enumTrend.java +104 -0
- package/android/src/main/java/cgmblelib/Enum/enumUUID.java +134 -0
- package/android/src/main/java/cgmblelib/Enum/enumUnBind.java +52 -0
- package/android/src/main/java/cgmblelib/base/BApplication.java +86 -0
- package/android/src/main/java/cgmblelib/base/BSharedPreferences.java +110 -0
- package/android/src/main/java/cgmblelib/base/CActivity.java +128 -0
- package/android/src/main/java/cgmblelib/ble/BleService.java +231 -0
- package/android/src/main/java/cgmblelib/ble/entity/AlgorithmCallBack.java +67 -0
- package/android/src/main/java/cgmblelib/ble/gattcallback/BleGattCallback.java +410 -0
- package/android/src/main/java/cgmblelib/ble/gattcallback/EnumSynchronous.java +29 -0
- package/android/src/main/java/cgmblelib/ble/gattcallback/GattTool.java +359 -0
- package/android/src/main/java/cgmblelib/ble/gattcallback/LineUpTaskGlucoseProcess.java +168 -0
- package/android/src/main/java/cgmblelib/ble/gattcallback/ManageGattCallback.java +936 -0
- package/android/src/main/java/cgmblelib/ble/reconnectManagament/BaseReconnect.java +35 -0
- package/android/src/main/java/cgmblelib/ble/reconnectManagament/ReconnectManagement.java +298 -0
- package/android/src/main/java/cgmblelib/ble/scancallback/BleScanCallback.java +118 -0
- package/android/src/main/java/cgmblelib/ble/scancallback/ManageScanCallback.java +316 -0
- package/android/src/main/java/cgmblelib/custom/livedata/ManagementLiveData.java +216 -0
- package/android/src/main/java/cgmblelib/custom/livedata/connect/EnumConnect.java +30 -0
- package/android/src/main/java/cgmblelib/custom/livedata/connect/OperationConnectBean.java +51 -0
- package/android/src/main/java/cgmblelib/custom/livedata/connect/OperationConnectLiveData.java +66 -0
- package/android/src/main/java/cgmblelib/custom/livedata/scan/EnumScan.java +25 -0
- package/android/src/main/java/cgmblelib/custom/livedata/scan/OperationScanBean.java +60 -0
- package/android/src/main/java/cgmblelib/custom/livedata/scan/OperationScanLiveData.java +69 -0
- package/android/src/main/java/cgmblelib/custom/livedata/scan/PocDeviceAndRssi.java +57 -0
- package/android/src/main/java/cgmblelib/database/AppDatabase.java +82 -0
- package/android/src/main/java/cgmblelib/database/ArrayConverter.java +37 -0
- package/android/src/main/java/cgmblelib/database/ByteConverter.java +95 -0
- package/android/src/main/java/cgmblelib/database/DateConverter.java +40 -0
- package/android/src/main/java/cgmblelib/database/EnumConverter.java +76 -0
- package/android/src/main/java/cgmblelib/database/dao/DaoDevice.java +135 -0
- package/android/src/main/java/cgmblelib/database/dao/DaoGlucose.java +355 -0
- package/android/src/main/java/cgmblelib/database/entity/PocDevice.java +335 -0
- package/android/src/main/java/cgmblelib/database/entity/PocGlucose.java +393 -0
- package/android/src/main/java/cgmblelib/database/livedata/LatestDeviceLiveData.java +62 -0
- package/android/src/main/java/cgmblelib/database/repository/RepositoryDevice.java +206 -0
- package/android/src/main/java/cgmblelib/database/repository/RepositoryGlucose.java +195 -0
- package/android/src/main/java/cgmblelib/database/source/SourceBase.java +10 -0
- package/android/src/main/java/cgmblelib/database/source/SourceDevice.java +116 -0
- package/android/src/main/java/cgmblelib/database/source/SourceGlucose.java +232 -0
- package/android/src/main/java/cgmblelib/database/source/db/DBDataSource.java +29 -0
- package/android/src/main/java/cgmblelib/database/source/db/DeviceDBDataSource.java +194 -0
- package/android/src/main/java/cgmblelib/database/source/db/GlucoseDBDataSource.java +323 -0
- package/android/src/main/java/cgmblelib/qr/QRInformation.java +96 -0
- package/android/src/main/java/cgmblelib/receiver/BleServiceReceiver.java +129 -0
- package/android/src/main/java/cgmblelib/utils/AppExecutors.java +76 -0
- package/android/src/main/java/cgmblelib/utils/AxisYForGlucoseLevel.java +67 -0
- package/android/src/main/java/cgmblelib/utils/ConstantsLibrary.java +88 -0
- package/android/src/main/java/cgmblelib/utils/CrashHandler.java +39 -0
- package/android/src/main/java/cgmblelib/utils/DiskIOThreadExecutor.java +23 -0
- package/android/src/main/java/cgmblelib/utils/MyLog.java +606 -0
- package/android/src/main/java/cgmblelib/utils/NotificationTool.java +115 -0
- package/android/src/main/java/cgmblelib/utils/PermissionCheckTool.java +47 -0
- package/android/src/main/java/cgmblelib/utils/SharedPreferencesLibraryUtil.java +69 -0
- package/android/src/main/java/cgmblelib/utils/SyncMeta.kt +8 -0
- package/android/src/main/java/cgmblelib/utils/Tool.java +400 -0
- package/android/src/main/java/com/mytatvarnsdk/CgmTrackyLibModule.kt +885 -0
- package/android/src/main/java/com/mytatvarnsdk/CgmTrackyLibPackage.kt +16 -0
- package/android/src/main/java/com/mytatvarnsdk/MainActivity.kt +404 -0
- package/android/src/main/java/com/mytatvarnsdk/MainApplication.kt +52 -0
- package/android/src/main/java/com/mytatvarnsdk/MyTatvaRnSdkPackage.kt +2 -2
- package/android/src/main/java/com/mytatvarnsdk/MyTatvaRnSdkViewManager.kt +1 -1
- package/android/src/main/java/com/mytatvarnsdk/activity/BtManageActivity.java +427 -0
- package/android/src/main/java/com/mytatvarnsdk/activity/ConnectSensorActivity.kt +334 -0
- package/android/src/main/java/com/mytatvarnsdk/activity/ExitJourneyBottomSheet.kt +78 -0
- package/android/src/main/java/com/mytatvarnsdk/activity/HelpActivity.kt +70 -0
- package/android/src/main/java/com/mytatvarnsdk/activity/PermissionActivity.kt +367 -0
- package/android/src/main/java/com/mytatvarnsdk/activity/PlaceSensorActivity.kt +103 -0
- package/android/src/main/java/com/mytatvarnsdk/activity/PlaceTransmitterActivity.kt +145 -0
- package/android/src/main/java/com/mytatvarnsdk/activity/QRActivity.kt +119 -0
- package/android/src/main/java/com/mytatvarnsdk/activity/SearchTransmitterActivity.kt +554 -0
- package/android/src/main/java/com/mytatvarnsdk/activity/SensorConnectSuccessActivity.kt +156 -0
- package/android/src/main/java/com/mytatvarnsdk/activity/StartCGMActivity.kt +92 -0
- package/android/src/main/java/com/mytatvarnsdk/adapter/AdapterFragment.java +32 -0
- package/android/src/main/java/com/mytatvarnsdk/base/BaseBleActivity.java +223 -0
- package/android/src/main/java/com/mytatvarnsdk/base/BaseLiveDataEventsDistributeActivity.java +301 -0
- package/android/src/main/java/com/mytatvarnsdk/base/BasePermissionActivity.java +383 -0
- package/android/src/main/java/com/mytatvarnsdk/model/AllCGMLogRequest.kt +50 -0
- package/android/src/main/java/com/mytatvarnsdk/model/BaseViewModel.java +109 -0
- package/android/src/main/java/com/mytatvarnsdk/model/GlucoseLog.kt +41 -0
- package/android/src/main/java/com/mytatvarnsdk/model/GlucoseLogRequest.kt +3 -0
- package/android/src/main/java/com/mytatvarnsdk/model/MainActivityModel.java +18 -0
- package/android/src/main/java/com/mytatvarnsdk/myView/CircleImageView.java +110 -0
- package/android/src/main/java/com/mytatvarnsdk/myView/DragActionButton.java +96 -0
- package/android/src/main/java/com/mytatvarnsdk/myView/HistoryItem.java +45 -0
- package/android/src/main/java/com/mytatvarnsdk/myView/Media/CustomMediaPlayer.java +155 -0
- package/android/src/main/java/com/mytatvarnsdk/myView/PagerAdapterWrapper.java +117 -0
- package/android/src/main/java/com/mytatvarnsdk/myView/RtlViewPager.java +361 -0
- package/android/src/main/java/com/mytatvarnsdk/myView/dialog/AlarmDialogManagement.java +115 -0
- package/android/src/main/java/com/mytatvarnsdk/myView/dialog/DialogType.java +88 -0
- package/android/src/main/java/com/mytatvarnsdk/myView/dialog/WarnDialog.java +328 -0
- package/android/src/main/java/com/mytatvarnsdk/myView/dialog/WarnDialogUtils.java +202 -0
- package/android/src/main/java/com/mytatvarnsdk/myView/horizonViewPager/HorizontalViewPage.java +20 -0
- package/android/src/main/java/com/mytatvarnsdk/myView/horizonViewPager/ScaleInTransformer.java +33 -0
- package/android/src/main/java/com/mytatvarnsdk/myView/popupwindow/BPopupWindow.java +166 -0
- package/android/src/main/java/com/mytatvarnsdk/myView/popupwindow/ErrorInfoPop.java +28 -0
- package/android/src/main/java/com/mytatvarnsdk/myView/popupwindow/PermissionRequestPopWindow.java +64 -0
- package/android/src/main/java/com/mytatvarnsdk/myView/popupwindow/PopShowWay.java +16 -0
- package/android/src/main/java/com/mytatvarnsdk/myView/popupwindow/PopupType.java +70 -0
- package/android/src/main/java/com/mytatvarnsdk/myView/popupwindow/PopupWindowManagement.java +191 -0
- package/android/src/main/java/com/mytatvarnsdk/myView/popupwindow/TransmitterConnectPopWindow.java +88 -0
- package/android/src/main/java/com/mytatvarnsdk/myView/progress/BaseCustomProgress.java +55 -0
- package/android/src/main/java/com/mytatvarnsdk/myView/progress/CircularProgressView.java +238 -0
- package/android/src/main/java/com/mytatvarnsdk/myView/progress/ProgressManagement.java +100 -0
- package/android/src/main/java/com/mytatvarnsdk/myView/progress/ProgressType.java +41 -0
- package/android/src/main/java/com/mytatvarnsdk/myView/progress/WaitProgress.java +91 -0
- package/android/src/main/java/com/mytatvarnsdk/myView/widget/SensorGlucoseShow.java +219 -0
- package/android/src/main/java/com/mytatvarnsdk/myView/widget/TransmitterState.java +536 -0
- package/android/src/main/java/com/mytatvarnsdk/network/ApiServiceInterface.kt +22 -0
- package/android/src/main/java/com/mytatvarnsdk/network/AuthenticateSDKService.kt +168 -0
- package/android/src/main/java/com/mytatvarnsdk/receiver/BootCompleteReceiver.java +31 -0
- package/android/src/main/java/com/mytatvarnsdk/utils/CGMTool.java +59 -0
- package/android/src/main/java/com/mytatvarnsdk/utils/DeviceStatus.kt +35 -0
- package/android/src/main/java/com/mytatvarnsdk/utils/EncryptionUtil.kt +98 -0
- package/android/src/main/java/com/mytatvarnsdk/utils/RetrofitInstance.kt +20 -0
- package/android/src/main/java/com/mytatvarnsdk/utils/TatvaEncryptionConfig.kt +20 -0
- package/android/src/main/java/com/mytatvarnsdk/utils/Tatva_Environment.kt +6 -0
- package/android/src/main/res/anim/pop_down_out.xml +12 -0
- package/android/src/main/res/anim/pop_left_right.xml +8 -0
- package/android/src/main/res/anim/pop_right_left.xml +7 -0
- package/android/src/main/res/anim/pop_up_in.xml +11 -0
- package/android/src/main/res/anim/reverse_down_anim.xml +12 -0
- package/android/src/main/res/anim/reverse_up_anim.xml +11 -0
- package/android/src/main/res/color/radio_text_selector.xml +5 -0
- package/android/src/main/res/drawable/bg_blue.xml +6 -0
- package/android/src/main/res/drawable/bg_dark_black.xml +6 -0
- package/android/src/main/res/drawable/bg_darkgray_corner_16.xml +5 -0
- package/android/src/main/res/drawable/bg_design.png +0 -0
- package/android/src/main/res/drawable/bg_gray_corner10.xml +5 -0
- package/android/src/main/res/drawable/bg_green.xml +6 -0
- package/android/src/main/res/drawable/bg_green_border_20.xml +6 -0
- package/android/src/main/res/drawable/bg_light_blue.xml +6 -0
- package/android/src/main/res/drawable/bg_light_green_border_20.xml +7 -0
- package/android/src/main/res/drawable/bg_maincolor_corner5.xml +6 -0
- package/android/src/main/res/drawable/bg_offwhite.xml +6 -0
- package/android/src/main/res/drawable/bg_progressbar.xml +14 -0
- package/android/src/main/res/drawable/bg_red_border_20.xml +6 -0
- package/android/src/main/res/drawable/bg_rounded_gradient.xml +12 -0
- package/android/src/main/res/drawable/bg_transblack_corner_8.xml +5 -0
- package/android/src/main/res/drawable/bg_white_border_20.xml +10 -0
- package/android/src/main/res/drawable/bg_white_corner_10.xml +7 -0
- package/android/src/main/res/drawable/bg_white_corner_8.xml +7 -0
- package/android/src/main/res/drawable/bg_white_green_border_20.xml +7 -0
- package/android/src/main/res/drawable/bg_yellow_bottom.xml +10 -0
- package/android/src/main/res/drawable/bg_yellow_top.xml +10 -0
- package/android/src/main/res/drawable/bottom_sheet_background.xml +8 -0
- package/android/src/main/res/drawable/checked_arrow_up_down.xml +5 -0
- package/android/src/main/res/drawable/circle_black.xml +7 -0
- package/android/src/main/res/drawable/circle_shape.xml +35 -0
- package/android/src/main/res/drawable/custom_radio_icon_selector.xml +5 -0
- package/android/src/main/res/drawable/custom_thumb.xml +6 -0
- package/android/src/main/res/drawable/dialog_warn_button_cancel.xml +11 -0
- package/android/src/main/res/drawable/dialog_warn_button_ok.xml +11 -0
- package/android/src/main/res/drawable/gray_border_15.xml +9 -0
- package/android/src/main/res/drawable/guide_circle.xml +5 -0
- package/android/src/main/res/drawable/hr_button_select.xml +5 -0
- package/android/src/main/res/drawable/hr_normal.xml +13 -0
- package/android/src/main/res/drawable/hr_select.xml +10 -0
- package/android/src/main/res/drawable/ic_charging_case.png +0 -0
- package/android/src/main/res/drawable/ic_close.png +0 -0
- package/android/src/main/res/drawable/ic_close_gray.xml +9 -0
- package/android/src/main/res/drawable/ic_play.xml +9 -0
- package/android/src/main/res/drawable/ic_play_gif.gif +0 -0
- package/android/src/main/res/drawable/ic_rectangle_blue.xml +9 -0
- package/android/src/main/res/drawable/ic_right_arrow.xml +9 -0
- package/android/src/main/res/drawable/ic_sync.xml +9 -0
- package/android/src/main/res/drawable/ic_transmitter.png +0 -0
- package/android/src/main/res/drawable/ic_whatsapp.xml +31 -0
- package/android/src/main/res/drawable/ic_whatsapp_green.xml +28 -0
- package/android/src/main/res/drawable/icon_glucose_hyperglycemia.xml +5 -0
- package/android/src/main/res/drawable/img_box_cross.png +0 -0
- package/android/src/main/res/drawable/img_box_qr.png +0 -0
- package/android/src/main/res/drawable/img_case.png +0 -0
- package/android/src/main/res/drawable/img_cgm_device.png +0 -0
- package/android/src/main/res/drawable/img_cgm_shadow.png +0 -0
- package/android/src/main/res/drawable/img_charging_indicator.png +0 -0
- package/android/src/main/res/drawable/img_charging_pod_full.png +0 -0
- package/android/src/main/res/drawable/img_female.png +0 -0
- package/android/src/main/res/drawable/img_male.png +0 -0
- package/android/src/main/res/drawable/img_trans_shell.png +0 -0
- package/android/src/main/res/drawable/popup_button_confirm_enable.xml +11 -0
- package/android/src/main/res/drawable/popup_window_bg.xml +9 -0
- package/android/src/main/res/drawable/radio_button_background.xml +17 -0
- package/android/src/main/res/drawable/radio_checked.xml +9 -0
- package/android/src/main/res/drawable/radio_unchecked.xml +13 -0
- package/android/src/main/res/drawable/searching.gif +0 -0
- package/android/src/main/res/drawable/sensor_bg.xml +10 -0
- package/android/src/main/res/drawable/success_anim.gif +0 -0
- package/android/src/main/res/drawable/thumb_selector.xml +11 -0
- package/android/src/main/res/drawable/toggle_off.xml +16 -0
- package/android/src/main/res/drawable/toggle_on.xml +16 -0
- package/android/src/main/res/drawable/track_selector.xml +17 -0
- package/android/src/main/res/drawable/warning.gif +0 -0
- package/android/src/main/res/drawable-hdpi/alarm_sound_shake_white.png +0 -0
- package/android/src/main/res/drawable-hdpi/arrow_down.png +0 -0
- package/android/src/main/res/drawable-hdpi/arrow_up.png +0 -0
- package/android/src/main/res/drawable-hdpi/calibration_notice.png +0 -0
- package/android/src/main/res/drawable-hdpi/drop_rapidly.png +0 -0
- package/android/src/main/res/drawable-hdpi/drop_rapidly_low.png +0 -0
- package/android/src/main/res/drawable-hdpi/drop_steadily.png +0 -0
- package/android/src/main/res/drawable-hdpi/home_menu.png +0 -0
- package/android/src/main/res/drawable-hdpi/implentation_step3.png +0 -0
- package/android/src/main/res/drawable-hdpi/implentation_step4.png +0 -0
- package/android/src/main/res/drawable-hdpi/poput_request_permission_icon.png +0 -0
- package/android/src/main/res/drawable-hdpi/product_box.png +0 -0
- package/android/src/main/res/drawable-hdpi/progress_wait_other_icon.png +0 -0
- package/android/src/main/res/drawable-hdpi/rise_rapidly.png +0 -0
- package/android/src/main/res/drawable-hdpi/rise_steadily.png +0 -0
- package/android/src/main/res/drawable-hdpi/sound_close.png +0 -0
- package/android/src/main/res/drawable-hdpi/sound_open.png +0 -0
- package/android/src/main/res/drawable-hdpi/steady.png +0 -0
- package/android/src/main/res/drawable-hdpi/toast_success.png +0 -0
- package/android/src/main/res/drawable-hdpi/video_wait.png +0 -0
- package/android/src/main/res/drawable-xhdpi/alarm_sound_shake_white.png +0 -0
- package/android/src/main/res/drawable-xhdpi/arrow_down.png +0 -0
- package/android/src/main/res/drawable-xhdpi/arrow_up.png +0 -0
- package/android/src/main/res/drawable-xhdpi/arrows_down_white.png +0 -0
- package/android/src/main/res/drawable-xhdpi/bt_qr_img.png +0 -0
- package/android/src/main/res/drawable-xhdpi/calibration_notice.png +0 -0
- package/android/src/main/res/drawable-xhdpi/cgm_img.png +0 -0
- package/android/src/main/res/drawable-xhdpi/chart_point_hypoglycemia.png +0 -0
- package/android/src/main/res/drawable-xhdpi/chart_point_normal.png +0 -0
- package/android/src/main/res/drawable-xhdpi/count_down_icon.png +0 -0
- package/android/src/main/res/drawable-xhdpi/device_unbind.png +0 -0
- package/android/src/main/res/drawable-xhdpi/drop_rapidly.png +0 -0
- package/android/src/main/res/drawable-xhdpi/drop_rapidly_low.png +0 -0
- package/android/src/main/res/drawable-xhdpi/drop_steadily.png +0 -0
- package/android/src/main/res/drawable-xhdpi/friend_share.png +0 -0
- package/android/src/main/res/drawable-xhdpi/guide_step1.png +0 -0
- package/android/src/main/res/drawable-xhdpi/guide_step10.png +0 -0
- package/android/src/main/res/drawable-xhdpi/guide_step2_arm.png +0 -0
- package/android/src/main/res/drawable-xhdpi/guide_step2_fu.png +0 -0
- package/android/src/main/res/drawable-xhdpi/guide_step3.png +0 -0
- package/android/src/main/res/drawable-xhdpi/guide_step4.png +0 -0
- package/android/src/main/res/drawable-xhdpi/guide_step5.png +0 -0
- package/android/src/main/res/drawable-xhdpi/guide_step6.png +0 -0
- package/android/src/main/res/drawable-xhdpi/guide_step7.png +0 -0
- package/android/src/main/res/drawable-xhdpi/guide_step8.png +0 -0
- package/android/src/main/res/drawable-xhdpi/guide_step9.png +0 -0
- package/android/src/main/res/drawable-xhdpi/home_menu.png +0 -0
- package/android/src/main/res/drawable-xhdpi/home_question.png +0 -0
- package/android/src/main/res/drawable-xhdpi/icon_back.png +0 -0
- package/android/src/main/res/drawable-xhdpi/icon_ct3.png +0 -0
- package/android/src/main/res/drawable-xhdpi/icon_glucose_hyperglycemia.png +0 -0
- package/android/src/main/res/drawable-xhdpi/implement_close.png +0 -0
- package/android/src/main/res/drawable-xhdpi/implentation_step2_1.png +0 -0
- package/android/src/main/res/drawable-xhdpi/implentation_step2_2.png +0 -0
- package/android/src/main/res/drawable-xhdpi/implentation_step3.png +0 -0
- package/android/src/main/res/drawable-xhdpi/implentation_step4.png +0 -0
- package/android/src/main/res/drawable-xhdpi/loading_icon.png +0 -0
- package/android/src/main/res/drawable-xhdpi/login_loading.png +0 -0
- package/android/src/main/res/drawable-xhdpi/main_bg.png +0 -0
- package/android/src/main/res/drawable-xhdpi/mes_pop_box_icon.png +0 -0
- package/android/src/main/res/drawable-xhdpi/poput_request_permission_icon.png +0 -0
- package/android/src/main/res/drawable-xhdpi/prepare_box_video.png +0 -0
- package/android/src/main/res/drawable-xhdpi/prepare_products.png +0 -0
- package/android/src/main/res/drawable-xhdpi/product_box.png +0 -0
- package/android/src/main/res/drawable-xhdpi/progress_wait_center.png +0 -0
- package/android/src/main/res/drawable-xhdpi/progress_wait_other_icon.png +0 -0
- package/android/src/main/res/drawable-xhdpi/progress_wait_search.png +0 -0
- package/android/src/main/res/drawable-xhdpi/rise_rapidly.png +0 -0
- package/android/src/main/res/drawable-xhdpi/rise_steadily.png +0 -0
- package/android/src/main/res/drawable-xhdpi/sound_close.png +0 -0
- package/android/src/main/res/drawable-xhdpi/sound_implement.png +0 -0
- package/android/src/main/res/drawable-xhdpi/sound_open.png +0 -0
- package/android/src/main/res/drawable-xhdpi/star.png +0 -0
- package/android/src/main/res/drawable-xhdpi/steady.png +0 -0
- package/android/src/main/res/drawable-xhdpi/title_black.png +0 -0
- package/android/src/main/res/drawable-xhdpi/toast_success.png +0 -0
- package/android/src/main/res/drawable-xhdpi/trend_drop_rapidly.png +0 -0
- package/android/src/main/res/drawable-xhdpi/trend_drop_rapidly_low.png +0 -0
- package/android/src/main/res/drawable-xhdpi/trend_drop_steadily.png +0 -0
- package/android/src/main/res/drawable-xhdpi/trend_none.png +0 -0
- package/android/src/main/res/drawable-xhdpi/trend_rise_rapidly.png +0 -0
- package/android/src/main/res/drawable-xhdpi/trend_rise_steadily.png +0 -0
- package/android/src/main/res/drawable-xhdpi/trend_steady.png +0 -0
- package/android/src/main/res/drawable-xhdpi/triangle_red.png +0 -0
- package/android/src/main/res/drawable-xhdpi/triangle_yellow.png +0 -0
- package/android/src/main/res/drawable-xhdpi/video_wait.png +0 -0
- package/android/src/main/res/drawable-xhdpi/widget_drop_rapid.png +0 -0
- package/android/src/main/res/drawable-xhdpi/widget_drop_rapid_low.png +0 -0
- package/android/src/main/res/drawable-xhdpi/widget_drop_slow.png +0 -0
- package/android/src/main/res/drawable-xhdpi/widget_rise_rapid.png +0 -0
- package/android/src/main/res/drawable-xhdpi/widget_rise_slow.png +0 -0
- package/android/src/main/res/drawable-xhdpi/widget_steady.png +0 -0
- package/android/src/main/res/drawable-xhdpi/zoom_in.png +0 -0
- package/android/src/main/res/drawable-xhdpi/zoom_out_white.png +0 -0
- package/android/src/main/res/drawable-xxhdpi/alarm_sound_shake_white.png +0 -0
- package/android/src/main/res/drawable-xxhdpi/calibration_notice.png +0 -0
- package/android/src/main/res/drawable-xxhdpi/drop_rapidly.png +0 -0
- package/android/src/main/res/drawable-xxhdpi/drop_rapidly_low.png +0 -0
- package/android/src/main/res/drawable-xxhdpi/drop_steadily.png +0 -0
- package/android/src/main/res/drawable-xxhdpi/home_menu.png +0 -0
- package/android/src/main/res/drawable-xxhdpi/mes_pop_box_icon.png +0 -0
- package/android/src/main/res/drawable-xxhdpi/poput_request_permission_icon.png +0 -0
- package/android/src/main/res/drawable-xxhdpi/product_box.png +0 -0
- package/android/src/main/res/drawable-xxhdpi/progress_wait_center.png +0 -0
- package/android/src/main/res/drawable-xxhdpi/progress_wait_other_icon.png +0 -0
- package/android/src/main/res/drawable-xxhdpi/rise_rapidly.png +0 -0
- package/android/src/main/res/drawable-xxhdpi/rise_steadily.png +0 -0
- package/android/src/main/res/drawable-xxhdpi/sound_close.png +0 -0
- package/android/src/main/res/drawable-xxhdpi/sound_open.png +0 -0
- package/android/src/main/res/drawable-xxhdpi/steady.png +0 -0
- package/android/src/main/res/drawable-xxhdpi/title_black.png +0 -0
- package/android/src/main/res/drawable-xxhdpi/toast_success.png +0 -0
- package/android/src/main/res/drawable-xxhdpi/video_wait.png +0 -0
- package/android/src/main/res/drawable-xxxhdpi/mes_pop_box_icon.png +0 -0
- package/android/src/main/res/drawable-xxxhdpi/poput_request_permission_icon.png +0 -0
- package/android/src/main/res/drawable-xxxhdpi/progress_wait_other_icon.png +0 -0
- package/android/src/main/res/font/playfairdisplay_bold.ttf +0 -0
- package/android/src/main/res/font/playfairdisplay_medium.ttf +0 -0
- package/android/src/main/res/font/playfairdisplay_regular.ttf +0 -0
- package/android/src/main/res/font/roboto_bold.ttf +0 -0
- package/android/src/main/res/font/roboto_medium.ttf +0 -0
- package/android/src/main/res/font/roboto_regular.ttf +0 -0
- package/android/src/main/res/font/roboto_semibold.ttf +0 -0
- package/android/src/main/res/layout/activity_bt_manage.xml +107 -0
- package/android/src/main/res/layout/activity_cgmdevice.xml +99 -0
- package/android/src/main/res/layout/activity_connect_sensor.xml +415 -0
- package/android/src/main/res/layout/activity_count_down.xml +229 -0
- package/android/src/main/res/layout/activity_guide.xml +118 -0
- package/android/src/main/res/layout/activity_help.xml +188 -0
- package/android/src/main/res/layout/activity_main.xml +48 -0
- package/android/src/main/res/layout/activity_permission.xml +205 -0
- package/android/src/main/res/layout/activity_place_sensor.xml +156 -0
- package/android/src/main/res/layout/activity_place_transmitter.xml +124 -0
- package/android/src/main/res/layout/activity_prepare_step1.xml +191 -0
- package/android/src/main/res/layout/activity_qr.xml +16 -0
- package/android/src/main/res/layout/activity_qractivity.xml +10 -0
- package/android/src/main/res/layout/activity_search_transmitter.xml +667 -0
- package/android/src/main/res/layout/activity_sensor_connect_success.xml +101 -0
- package/android/src/main/res/layout/activity_start_cgmactivity.xml +175 -0
- package/android/src/main/res/layout/activity_transmitter_list.xml +38 -0
- package/android/src/main/res/layout/activity_transmitter_state.xml +74 -0
- package/android/src/main/res/layout/activity_trend_detail.xml +287 -0
- package/android/src/main/res/layout/activity_welcome.xml +11 -0
- package/android/src/main/res/layout/dialog_progress_wait.xml +49 -0
- package/android/src/main/res/layout/dialog_warn.xml +140 -0
- package/android/src/main/res/layout/exit_dialog_bottomsheet.xml +90 -0
- package/android/src/main/res/layout/fragment_count_down.xml +65 -0
- package/android/src/main/res/layout/fragment_prepare.xml +15 -0
- package/android/src/main/res/layout/fragment_sensor.xml +174 -0
- package/android/src/main/res/layout/fragment_sensor_glucose_show.xml +62 -0
- package/android/src/main/res/layout/history_item.xml +92 -0
- package/android/src/main/res/layout/layout_button.xml +56 -0
- package/android/src/main/res/layout/layout_green_border_button.xml +44 -0
- package/android/src/main/res/layout/layout_red_button.xml +43 -0
- package/android/src/main/res/layout/layout_toolbar.xml +61 -0
- package/android/src/main/res/layout/pop_error_info.xml +13 -0
- package/android/src/main/res/layout/popup_window_request_permisson.xml +54 -0
- package/android/src/main/res/layout/popup_window_transmitter_connect.xml +103 -0
- package/android/src/main/res/layout/top_menu_common.xml +95 -0
- package/android/src/main/res/layout/view_loading_button.xml +29 -0
- package/android/src/main/res/raw/high_alarm.mp3 +0 -0
- package/android/src/main/res/raw/medium_alarm.mp3 +0 -0
- package/android/src/main/res/values/colors.xml +44 -0
- package/android/src/main/res/values/dimens.xml +21 -0
- package/android/src/main/res/values/strings.xml +202 -0
- package/android/src/main/res/values/styles.xml +98 -0
- package/ios/Assets.xcassets/AccentColor.colorset/Contents.json +11 -0
- package/ios/Assets.xcassets/AppIcon.appiconset/Contents.json +35 -0
- package/ios/Assets.xcassets/CGM_with_Toggle.imageset/CGM_with_Toggle.png +0 -0
- package/ios/Assets.xcassets/CGM_with_Toggle.imageset/Contents.json +21 -0
- package/ios/Assets.xcassets/Contents.json +6 -0
- package/ios/Assets.xcassets/Take_out_transmitter.imageset/Contents.json +21 -0
- package/ios/Assets.xcassets/Take_out_transmitter.imageset/Take our transmitter.png +0 -0
- package/ios/Assets.xcassets/charging.imageset/Contents.json +21 -0
- package/ios/Assets.xcassets/charging.imageset/charging.png +0 -0
- package/ios/Assets.xcassets/charging_pod.imageset/Contents.json +21 -0
- package/ios/Assets.xcassets/charging_pod.imageset/charging_pod.png +0 -0
- package/ios/Assets.xcassets/close_pod.imageset/Contents.json +23 -0
- package/ios/Assets.xcassets/close_pod.imageset/Group 1000005563.png +0 -0
- package/ios/Assets.xcassets/close_pod.imageset/Group 1000005563@2x.png +0 -0
- package/ios/Assets.xcassets/close_pod.imageset/Group 1000005563@3x.png +0 -0
- package/ios/Assets.xcassets/do_not_place_inside.imageset/Contents.json +21 -0
- package/ios/Assets.xcassets/do_not_place_inside.imageset/do_not_place_inside.png +0 -0
- package/ios/Assets.xcassets/flip_the_reference.imageset/Contents.json +21 -0
- package/ios/Assets.xcassets/flip_the_reference.imageset/flip_the_reference.png +0 -0
- package/ios/Assets.xcassets/fully_charged.imageset/Contents.json +21 -0
- package/ios/Assets.xcassets/fully_charged.imageset/fully_charged.png +0 -0
- package/ios/Assets.xcassets/green.colorset/Contents.json +38 -0
- package/ios/Assets.xcassets/ic_arrow.imageset/7.png +0 -0
- package/ios/Assets.xcassets/ic_arrow.imageset/7@2x.png +0 -0
- package/ios/Assets.xcassets/ic_arrow.imageset/7@3x.png +0 -0
- package/ios/Assets.xcassets/ic_arrow.imageset/Contents.json +23 -0
- package/ios/Assets.xcassets/ic_back.imageset/7.png +0 -0
- package/ios/Assets.xcassets/ic_back.imageset/7@2x.png +0 -0
- package/ios/Assets.xcassets/ic_back.imageset/7@3x.png +0 -0
- package/ios/Assets.xcassets/ic_back.imageset/Contents.json +23 -0
- package/ios/Assets.xcassets/ic_back_arrow.imageset/Contents.json +23 -0
- package/ios/Assets.xcassets/ic_back_arrow.imageset/image 17 (Traced).png +0 -0
- package/ios/Assets.xcassets/ic_back_arrow.imageset/image 17 (Traced)@2x.png +0 -0
- package/ios/Assets.xcassets/ic_back_arrow.imageset/image 17 (Traced)@3x.png +0 -0
- package/ios/Assets.xcassets/ic_circle.imageset/Contents.json +23 -0
- package/ios/Assets.xcassets/ic_circle.imageset/circle.png +0 -0
- package/ios/Assets.xcassets/ic_circle.imageset/circle@2x.png +0 -0
- package/ios/Assets.xcassets/ic_circle.imageset/circle@3x.png +0 -0
- package/ios/Assets.xcassets/ic_close.imageset/Contents.json +23 -0
- package/ios/Assets.xcassets/ic_close.imageset/close button.png +0 -0
- package/ios/Assets.xcassets/ic_close.imageset/close button@2x.png +0 -0
- package/ios/Assets.xcassets/ic_close.imageset/close button@3x.png +0 -0
- package/ios/Assets.xcassets/ic_close_popup.imageset/Contents.json +23 -0
- package/ios/Assets.xcassets/ic_close_popup.imageset/Frame.png +0 -0
- package/ios/Assets.xcassets/ic_close_popup.imageset/Frame@2x.png +0 -0
- package/ios/Assets.xcassets/ic_close_popup.imageset/Frame@3x.png +0 -0
- package/ios/Assets.xcassets/ic_green_arrow.imageset/Contents.json +23 -0
- package/ios/Assets.xcassets/ic_green_arrow.imageset/image 17 (Traced).png +0 -0
- package/ios/Assets.xcassets/ic_green_arrow.imageset/image 17 (Traced)@2x.png +0 -0
- package/ios/Assets.xcassets/ic_green_arrow.imageset/image 17 (Traced)@3x.png +0 -0
- package/ios/Assets.xcassets/ic_play.imageset/Contents.json +26 -0
- package/ios/Assets.xcassets/ic_play.imageset/Play.png +0 -0
- package/ios/Assets.xcassets/ic_play.imageset/Play@2x.png +0 -0
- package/ios/Assets.xcassets/ic_play.imageset/Play@3x.png +0 -0
- package/ios/Assets.xcassets/ic_selected.imageset/Contents.json +23 -0
- package/ios/Assets.xcassets/ic_selected.imageset/Frame.png +0 -0
- package/ios/Assets.xcassets/ic_selected.imageset/Frame@2x.png +0 -0
- package/ios/Assets.xcassets/ic_selected.imageset/Frame@3x.png +0 -0
- package/ios/Assets.xcassets/ic_whatsApp_only.imageset/Contents.json +23 -0
- package/ios/Assets.xcassets/ic_whatsApp_only.imageset/WhatsApp.png +0 -0
- package/ios/Assets.xcassets/ic_whatsApp_only.imageset/WhatsApp@2x.png +0 -0
- package/ios/Assets.xcassets/ic_whatsApp_only.imageset/WhatsApp@3x.png +0 -0
- package/ios/Assets.xcassets/ic_whatsapp.imageset/Contents.json +23 -0
- package/ios/Assets.xcassets/ic_whatsapp.imageset/Frame 1000006343.png +0 -0
- package/ios/Assets.xcassets/ic_whatsapp.imageset/Frame 1000006343@2x.png +0 -0
- package/ios/Assets.xcassets/ic_whatsapp.imageset/Frame 1000006343@3x.png +0 -0
- package/ios/Assets.xcassets/indigo.colorset/Contents.json +38 -0
- package/ios/Assets.xcassets/mandala.imageset/Contents.json +21 -0
- package/ios/Assets.xcassets/mandala.imageset/ending.png +0 -0
- package/ios/Assets.xcassets/open_pod.imageset/Contents.json +23 -0
- package/ios/Assets.xcassets/open_pod.imageset/Screenshot 2025-04-22 at 8.07.34/342/200/257PM 1.png +0 -0
- package/ios/Assets.xcassets/open_pod.imageset/Screenshot 2025-04-22 at 8.07.34/342/200/257PM 1@2x.png +0 -0
- package/ios/Assets.xcassets/open_pod.imageset/Screenshot 2025-04-22 at 8.07.34/342/200/257PM 1@3x.png +0 -0
- package/ios/Assets.xcassets/step4.imageset/Contents.json +21 -0
- package/ios/Assets.xcassets/step4.imageset/step4.png +0 -0
- package/ios/Assets.xcassets/step5.imageset/Contents.json +21 -0
- package/ios/Assets.xcassets/step5.imageset/step5.png +0 -0
- package/ios/Assets.xcassets/transmitter_image.imageset/Contents.json +21 -0
- package/ios/Assets.xcassets/transmitter_image.imageset/transmitter_image.png +0 -0
- package/ios/Assets.xcassets/transmitter_shadow.imageset/CGM Shadow.png +0 -0
- package/ios/Assets.xcassets/transmitter_shadow.imageset/Contents.json +21 -0
- package/ios/Assets.xcassets/unselectedGray.colorset/Contents.json +38 -0
- package/ios/Custom/CustomColor.swift +22 -0
- package/ios/Custom/CustomFont.swift +49 -0
- package/ios/Custom/CustomOverlayButton.swift +237 -0
- package/ios/Custom/CustomStepProgressBar.swift +167 -0
- package/ios/Custom/CustomTopUIView.swift +173 -0
- package/ios/Custom/CustomView.swift +60 -0
- package/ios/Database/Advertise+CoreDataClass.h +23 -0
- package/ios/Database/Advertise+CoreDataClass.m +14 -0
- package/ios/Database/Advertise+CoreDataProperties.h +28 -0
- package/ios/Database/Advertise+CoreDataProperties.m +25 -0
- package/ios/Database/Device+CoreDataClass.h +23 -0
- package/ios/Database/Device+CoreDataClass.m +14 -0
- package/ios/Database/Device+CoreDataProperties.h +47 -0
- package/ios/Database/Device+CoreDataProperties.m +30 -0
- package/ios/Database/GlucoseData+CoreDataClass.h +23 -0
- package/ios/Database/GlucoseData+CoreDataClass.m +14 -0
- package/ios/Database/GlucoseData+CoreDataProperties.h +37 -0
- package/ios/Database/GlucoseData+CoreDataProperties.m +34 -0
- package/ios/Database/KLTAppDelegate.h +24 -0
- package/ios/Database/KLTAppDelegate.m +109 -0
- package/ios/Database/KLTBluetoothManager.h +83 -0
- package/ios/Database/KLTBluetoothManager.m +723 -0
- package/ios/Database/KLTCommonDefine.h +52 -0
- package/ios/Database/KLTDatabaseHandler.h +59 -0
- package/ios/Database/KLTDatabaseHandler.m +437 -0
- package/ios/Database/KLTFormat.h +32 -0
- package/ios/Database/KLTFormat.m +270 -0
- package/ios/Database/KLTLaunchConfiguration.h +37 -0
- package/ios/Database/KLTLaunchConfiguration.m +96 -0
- package/ios/Database/KLTLocalSettingManager.h +38 -0
- package/ios/Database/KLTLocalSettingManager.m +138 -0
- package/ios/Database/KLTPrefixHeader.pch +123 -0
- package/ios/Database/KLTRunLog.h +36 -0
- package/ios/Database/KLTRunLog.m +156 -0
- package/ios/Database/KLTUserDefautKeyDefine.h +42 -0
- package/ios/Database/MyTatva.xcdatamodeld/MyTatva.xcdatamodel/contents +68 -0
- package/ios/Database/NSString+KLTDateString.h +36 -0
- package/ios/Database/NSString+KLTDateString.m +160 -0
- package/ios/Database/ReceiveData+CoreDataClass.h +23 -0
- package/ios/Database/ReceiveData+CoreDataClass.m +14 -0
- package/ios/Database/ReceiveData+CoreDataProperties.h +47 -0
- package/ios/Database/ReceiveData+CoreDataProperties.m +44 -0
- package/ios/Database/UIColor+KLTUI.h +36 -0
- package/ios/Database/UIColor+KLTUI.m +60 -0
- package/ios/Extension/UIColor+Extension.swift +23 -0
- package/ios/Extension/UIImageView+Extension.swift +59 -0
- package/ios/Extension/UITableView+Extension.swift +37 -0
- package/ios/Extension/UIViewController+Extension.swift +24 -0
- package/ios/LaunchScreen.storyboard +47 -0
- package/ios/MyReactNativeBridge.h +19 -0
- package/ios/MyReactNativeBridge.m +36 -0
- package/ios/MyTatvaCare-Bridging-Header.h +23 -0
- package/ios/MyTatvaRnSdk.xcodeproj/project.xcworkspace/contents.xcworkspacedata +7 -0
- package/ios/MyTatvaRnSdk.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist +8 -0
- package/ios/MyTatvaRnSdk.xcodeproj/project.xcworkspace/xcuserdata/sonusharma.xcuserdatad/UserInterfaceState.xcuserstate +0 -0
- package/ios/MyTatvaRnSdk.xcodeproj/xcuserdata/sonusharma.xcuserdatad/xcschemes/xcschememanagement.plist +14 -0
- package/ios/MyTatvaRnSdkViewManager.h +1 -1
- package/ios/MyTatvaRnSdkViewManager.m +1 -1
- package/ios/Storyboard/Base.lproj/LaunchScreen.storyboard +25 -0
- package/ios/Storyboard/Base.lproj/Main.storyboard +858 -0
- package/ios/Support/API.swift +325 -0
- package/ios/Support/BluetoothManager.swift +472 -0
- package/ios/Support/Converter/DataConverter.swift +34 -0
- package/ios/Support/Enum.swift +37 -0
- package/ios/Support/EnumDebouncer.swift +55 -0
- package/ios/Support/Font/PlayfairDisplay-Italic-VariableFont_wght.ttf +0 -0
- package/ios/Support/Font/PlayfairDisplay-VariableFont_wght.ttf +0 -0
- package/ios/Support/Global.swift +12 -0
- package/ios/Support/KLTFormat.swift +151 -0
- package/ios/Support/Library/SDK/include/AlgorithmTools.h +52 -0
- package/ios/Support/Library/SDK/include/CGMAlgo.h +224 -0
- package/ios/Support/Library/SDK/include/CGMCommonDefine.h +176 -0
- package/ios/Support/Library/SDK/include/CurrentGlucose.h +412 -0
- package/ios/Support/Library/SDK/include/EDevice.h +78 -0
- package/ios/Support/Library/SDK/include/KRDecodeData.h +45 -0
- package/ios/Support/Library/SDK/libCGMAlgo.a +0 -0
- package/ios/Support/gif/failure.gif +0 -0
- package/ios/Support/gif/play.gif +0 -0
- package/ios/Support/gif/searching.gif +0 -0
- package/ios/Support/gif/shrimmer.gif +0 -0
- package/ios/TableViewCell/ChargingIndicatorTVC/ChargingIndicatorTVC.swift +45 -0
- package/ios/TableViewCell/ChargingIndicatorTVC/ChargingIndicatorTVC.xib +136 -0
- package/ios/TableViewCell/ChatOptionTVC/ChatOptionTVC.swift +34 -0
- package/ios/TableViewCell/ChatOptionTVC/ChatOptionTVC.xib +85 -0
- package/ios/TableViewCell/ConnectDeviceTVC/ConnectDeviceTVC.swift +38 -0
- package/ios/TableViewCell/ConnectDeviceTVC/ConnectDeviceTVC.xib +94 -0
- package/ios/TableViewCell/ConnectSuccessTVC/ConnectSuccessTVC.swift +52 -0
- package/ios/TableViewCell/ConnectSuccessTVC/ConnectSuccessTVC.xib +113 -0
- package/ios/TableViewCell/ImageTVC/ImageTVC.swift +123 -0
- package/ios/TableViewCell/ImageTVC/ImageTVC.xib +115 -0
- package/ios/TableViewCell/LabelTVC/LabelTVC.swift +26 -0
- package/ios/TableViewCell/LabelTVC/LabelTVC.xib +41 -0
- package/ios/TableViewCell/NoteTVC/NoteTVC.swift +58 -0
- package/ios/TableViewCell/NoteTVC/NoteTVC.xib +98 -0
- package/ios/TableViewCell/PodDetailsTVC/PodDetailsTVC.swift +31 -0
- package/ios/TableViewCell/PodDetailsTVC/PodDetailsTVC.xib +104 -0
- package/ios/TableViewCell/SearchDeviceTVC/SearchDeviceTVC.swift +28 -0
- package/ios/TableViewCell/SearchDeviceTVC/SearchDeviceTVC.xib +67 -0
- package/ios/TableViewCell/SeparatorTVC/SeparatorTVC.swift +23 -0
- package/ios/TableViewCell/SeparatorTVC/SeparatorTVC.xib +39 -0
- package/ios/TableViewCell/SwitchTVC/SwitchTVC.swift +52 -0
- package/ios/TableViewCell/SwitchTVC/SwitchTVC.xib +139 -0
- package/ios/TableViewCell/VIdeoTVC/VideoTVC.swift +28 -0
- package/ios/TableViewCell/VIdeoTVC/VideoTVC.xib +79 -0
- package/ios/TableViewCell/VerticalLabelsTVC/VerticalLabelsTVC.swift +37 -0
- package/ios/TableViewCell/VerticalLabelsTVC/VerticalLabelsTVC.xib +60 -0
- package/ios/TableViewCell/WatchVideoTVC/WatchVideoTVC.swift +37 -0
- package/ios/TableViewCell/WatchVideoTVC/WatchVideoTVC.xib +115 -0
- package/ios/ViewControllers/AttachTransmitterViewController.swift +115 -0
- package/ios/ViewControllers/ChatWithExpertViewController.swift +113 -0
- package/ios/ViewControllers/ConnectToSensorViewController.swift +368 -0
- package/ios/ViewControllers/ConnectToTransmitterViewController.swift +300 -0
- package/ios/ViewControllers/ExitJourneyViewController.swift +62 -0
- package/ios/ViewControllers/ProvidePermissionViewController.swift +286 -0
- package/ios/ViewControllers/PutOnTheSensorViewController.swift +99 -0
- package/ios/ViewControllers/StartConnectionViewController.swift +117 -0
- package/ios/ViewModel/FinalViewModel.swift +395 -0
- package/lib/commonjs/BcaDeviceListSheet.js +7 -6
- package/lib/commonjs/BcaDeviceListSheet.js.map +1 -1
- package/lib/commonjs/CGMConnect.js +108 -0
- package/lib/commonjs/CGMConnect.js.map +1 -0
- package/lib/commonjs/MainWebView.js +9 -5
- package/lib/commonjs/MainWebView.js.map +1 -1
- package/lib/commonjs/{index.android.js → MyTatvaRnSdkView.android.js} +44 -5
- package/lib/commonjs/MyTatvaRnSdkView.android.js.map +1 -0
- package/lib/commonjs/{index.ios.js → MyTatvaRnSdkView.ios.js} +37 -8
- package/lib/commonjs/MyTatvaRnSdkView.ios.js.map +1 -0
- package/lib/commonjs/ProgressWebView.js +14 -13
- package/lib/commonjs/ProgressWebView.js.map +1 -1
- package/lib/commonjs/Services.js.map +1 -1
- package/lib/commonjs/Sheets.js.map +1 -1
- package/lib/commonjs/api/auth.js.map +1 -1
- package/lib/commonjs/api/base.js +6 -4
- package/lib/commonjs/api/base.js.map +1 -1
- package/lib/commonjs/api/index.js.map +1 -1
- package/lib/commonjs/constants/asyncstorage.js.map +1 -1
- package/lib/commonjs/constants/constants.js.map +1 -1
- package/lib/commonjs/constants.js.map +1 -1
- package/lib/commonjs/helpers/Matrics.js +1 -1
- package/lib/commonjs/helpers/Matrics.js.map +1 -1
- package/lib/commonjs/helpers/bluetoothPermissionHelper.js.map +1 -1
- package/lib/commonjs/helpers/colors.js.map +1 -1
- package/lib/commonjs/helpers/common.js.map +1 -1
- package/lib/commonjs/helpers/fonts.js.map +1 -1
- package/lib/commonjs/helpers/globalStyles.js +27 -27
- package/lib/commonjs/helpers/globalStyles.js.map +1 -1
- package/lib/commonjs/helpers/icons.js.map +1 -1
- package/lib/commonjs/index.js +67 -0
- package/lib/commonjs/index.js.map +1 -0
- package/lib/commonjs/redux/Store.js +17 -12
- package/lib/commonjs/redux/Store.js.map +1 -1
- package/lib/commonjs/redux/hooks.js +4 -6
- package/lib/commonjs/redux/hooks.js.map +1 -1
- package/lib/commonjs/redux/sagas/AuthSaga.js +11 -18
- package/lib/commonjs/redux/sagas/AuthSaga.js.map +1 -1
- package/lib/commonjs/redux/sagas/index.js.map +1 -1
- package/lib/commonjs/redux/slices/authSlice.js.map +1 -1
- package/lib/commonjs/redux/slices/index.js +1 -2
- package/lib/commonjs/redux/slices/index.js.map +1 -1
- package/lib/commonjs/types/action-sheet.d.js +2 -0
- package/lib/commonjs/types/action-sheet.d.js.map +1 -0
- package/lib/commonjs/types/auth.js.map +1 -1
- package/lib/commonjs/types/common.js.map +1 -1
- package/lib/commonjs/types/index.js +1 -2
- package/lib/commonjs/types/index.js.map +1 -1
- package/lib/commonjs/types/sheet-manager.d.js +2 -0
- package/lib/commonjs/types/sheet-manager.d.js.map +1 -0
- package/lib/commonjs/types/svg.d.js +2 -0
- package/lib/commonjs/types/svg.d.js.map +1 -0
- package/lib/module/BcaDeviceListSheet.js +6 -4
- package/lib/module/BcaDeviceListSheet.js.map +1 -1
- package/lib/module/CGMConnect.js +94 -0
- package/lib/module/CGMConnect.js.map +1 -0
- package/lib/module/MainWebView.js +9 -5
- package/lib/module/MainWebView.js.map +1 -1
- package/lib/module/{index.android.js → MyTatvaRnSdkView.android.js} +44 -4
- package/lib/module/MyTatvaRnSdkView.android.js.map +1 -0
- package/lib/module/{index.ios.js → MyTatvaRnSdkView.ios.js} +37 -7
- package/lib/module/MyTatvaRnSdkView.ios.js.map +1 -0
- package/lib/module/ProgressWebView.js +14 -9
- package/lib/module/ProgressWebView.js.map +1 -1
- package/lib/module/Services.js.map +1 -1
- package/lib/module/Sheets.js.map +1 -1
- package/lib/module/api/auth.js.map +1 -1
- package/lib/module/api/base.js +6 -4
- package/lib/module/api/base.js.map +1 -1
- package/lib/module/api/index.js.map +1 -1
- package/lib/module/constants/asyncstorage.js.map +1 -1
- package/lib/module/constants/constants.js.map +1 -1
- package/lib/module/constants.js.map +1 -1
- package/lib/module/helpers/Matrics.js +1 -1
- package/lib/module/helpers/Matrics.js.map +1 -1
- package/lib/module/helpers/bluetoothPermissionHelper.js.map +1 -1
- package/lib/module/helpers/colors.js.map +1 -1
- package/lib/module/helpers/common.js.map +1 -1
- package/lib/module/helpers/fonts.js.map +1 -1
- package/lib/module/helpers/globalStyles.js +1 -1
- package/lib/module/helpers/globalStyles.js.map +1 -1
- package/lib/module/helpers/icons.js.map +1 -1
- package/lib/module/index.js +28 -0
- package/lib/module/index.js.map +1 -0
- package/lib/module/redux/Store.js +17 -10
- package/lib/module/redux/Store.js.map +1 -1
- package/lib/module/redux/hooks.js +3 -1
- package/lib/module/redux/hooks.js.map +1 -1
- package/lib/module/redux/sagas/AuthSaga.js +9 -16
- package/lib/module/redux/sagas/AuthSaga.js.map +1 -1
- package/lib/module/redux/sagas/index.js.map +1 -1
- package/lib/module/redux/slices/authSlice.js.map +1 -1
- package/lib/module/redux/slices/index.js.map +1 -1
- package/lib/module/types/action-sheet.d.js +2 -0
- package/lib/module/types/action-sheet.d.js.map +1 -0
- package/lib/module/types/auth.js.map +1 -1
- package/lib/module/types/common.js.map +1 -1
- package/lib/module/types/index.js.map +1 -1
- package/lib/module/types/sheet-manager.d.js +2 -0
- package/lib/module/types/sheet-manager.d.js.map +1 -0
- package/lib/module/types/svg.d.js +2 -0
- package/lib/module/types/svg.d.js.map +1 -0
- package/lib/typescript/BcaDeviceListSheet.d.ts +8 -3
- package/lib/typescript/CGMConnect.d.ts +8 -0
- package/lib/typescript/MainWebView.d.ts +0 -1
- package/lib/typescript/ProgressWebView.d.ts +0 -1
- package/lib/typescript/api/auth.d.ts +0 -1
- package/lib/typescript/api/base.d.ts +0 -1
- package/lib/typescript/api/index.d.ts +0 -1
- package/lib/typescript/constants/asyncstorage.d.ts +0 -1
- package/lib/typescript/constants/constants.d.ts +0 -1
- package/lib/typescript/constants.d.ts +0 -1
- package/lib/typescript/helpers/Matrics.d.ts +0 -1
- package/lib/typescript/helpers/bluetoothPermissionHelper.d.ts +0 -1
- package/lib/typescript/helpers/colors.d.ts +0 -1
- package/lib/typescript/helpers/common.d.ts +0 -1
- package/lib/typescript/helpers/fonts.d.ts +0 -1
- package/lib/typescript/helpers/globalStyles.d.ts +26 -27
- package/lib/typescript/helpers/icons.d.ts +4 -4
- package/lib/typescript/redux/Store.d.ts +5 -7
- package/lib/typescript/redux/hooks.d.ts +1 -1
- package/lib/typescript/redux/sagas/AuthSaga.d.ts +2 -3
- package/lib/typescript/redux/sagas/index.d.ts +0 -1
- package/lib/typescript/redux/slices/authSlice.d.ts +0 -1
- package/lib/typescript/redux/slices/index.d.ts +0 -1
- package/lib/typescript/types/auth.d.ts +0 -1
- package/lib/typescript/types/common.d.ts +0 -1
- package/lib/typescript/types/index.d.ts +0 -1
- package/package.json +14 -11
- package/src/BcaDeviceListSheet.tsx +20 -9
- package/src/CGMConnect.ts +118 -0
- package/src/{index.android.js → MyTatvaRnSdkView.android.js} +95 -39
- package/src/{index.ios.js → MyTatvaRnSdkView.ios.js} +14 -0
- package/src/ProgressWebView.tsx +2 -1
- package/src/helpers/Matrics.ts +1 -1
- package/src/helpers/globalStyles.ts +1 -1
- package/src/index.js +33 -0
- package/src/redux/Store.ts +21 -12
- package/src/redux/hooks.ts +3 -1
- package/src/redux/sagas/AuthSaga.ts +30 -36
- package/src/types/action-sheet.d.ts +22 -0
- package/src/types/sheet-manager.d.ts +14 -0
- package/src/types/svg.d.ts +5 -0
- package/lib/commonjs/index.android.js.map +0 -1
- package/lib/commonjs/index.ios.js.map +0 -1
- package/lib/module/index.android.js.map +0 -1
- package/lib/module/index.ios.js.map +0 -1
- package/lib/typescript/BcaDeviceListSheet.d.ts.map +0 -1
- package/lib/typescript/MainWebView.d.ts.map +0 -1
- package/lib/typescript/ProgressWebView.d.ts.map +0 -1
- package/lib/typescript/Services.d.ts +0 -5
- package/lib/typescript/Services.d.ts.map +0 -1
- package/lib/typescript/Sheets.d.ts +0 -2
- package/lib/typescript/Sheets.d.ts.map +0 -1
- package/lib/typescript/api/auth.d.ts.map +0 -1
- package/lib/typescript/api/base.d.ts.map +0 -1
- package/lib/typescript/api/index.d.ts.map +0 -1
- package/lib/typescript/constants/asyncstorage.d.ts.map +0 -1
- package/lib/typescript/constants/constants.d.ts.map +0 -1
- package/lib/typescript/constants.d.ts.map +0 -1
- package/lib/typescript/helpers/Matrics.d.ts.map +0 -1
- package/lib/typescript/helpers/bluetoothPermissionHelper.d.ts.map +0 -1
- package/lib/typescript/helpers/colors.d.ts.map +0 -1
- package/lib/typescript/helpers/common.d.ts.map +0 -1
- package/lib/typescript/helpers/fonts.d.ts.map +0 -1
- package/lib/typescript/helpers/globalStyles.d.ts.map +0 -1
- package/lib/typescript/helpers/icons.d.ts.map +0 -1
- package/lib/typescript/index.android.d.ts +0 -30
- package/lib/typescript/index.android.d.ts.map +0 -1
- package/lib/typescript/index.ios.d.ts +0 -28
- package/lib/typescript/index.ios.d.ts.map +0 -1
- package/lib/typescript/redux/Store.d.ts.map +0 -1
- package/lib/typescript/redux/hooks.d.ts.map +0 -1
- package/lib/typescript/redux/sagas/AuthSaga.d.ts.map +0 -1
- package/lib/typescript/redux/sagas/index.d.ts.map +0 -1
- package/lib/typescript/redux/slices/authSlice.d.ts.map +0 -1
- package/lib/typescript/redux/slices/index.d.ts.map +0 -1
- package/lib/typescript/types/auth.d.ts.map +0 -1
- package/lib/typescript/types/common.d.ts.map +0 -1
- package/lib/typescript/types/index.d.ts.map +0 -1
- /package/ios/{MyTatvaRnSdk.xcodeproj → VisitRnSdk.xcodeproj}/project.pbxproj +0 -0
|
@@ -0,0 +1,858 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<document type="com.apple.InterfaceBuilder3.CocoaTouch.Storyboard.XIB" version="3.0" toolsVersion="23727" targetRuntime="iOS.CocoaTouch" propertyAccessControl="none" useAutolayout="YES" useTraitCollections="YES" useSafeAreas="YES" colorMatched="YES" initialViewController="cQ9-ft-YLU">
|
|
3
|
+
<device id="retina6_12" orientation="portrait" appearance="light"/>
|
|
4
|
+
<dependencies>
|
|
5
|
+
<deployment identifier="iOS"/>
|
|
6
|
+
<plugIn identifier="com.apple.InterfaceBuilder.IBCocoaTouchPlugin" version="23721"/>
|
|
7
|
+
<capability name="Named colors" minToolsVersion="9.0"/>
|
|
8
|
+
<capability name="Safe area layout guides" minToolsVersion="9.0"/>
|
|
9
|
+
<capability name="System colors in document resources" minToolsVersion="11.0"/>
|
|
10
|
+
<capability name="documents saved in the Xcode 8 format" minToolsVersion="8.0"/>
|
|
11
|
+
</dependencies>
|
|
12
|
+
<scenes>
|
|
13
|
+
<!--Start Connection View Controller-->
|
|
14
|
+
<scene sceneID="tne-QT-ifu">
|
|
15
|
+
<objects>
|
|
16
|
+
<viewController storyboardIdentifier="StartConnectionViewController" id="BYZ-38-t0r" customClass="StartConnectionViewController" customModule="MyTatvaCare" customModuleProvider="target" sceneMemberID="viewController">
|
|
17
|
+
<view key="view" contentMode="scaleToFill" id="8bC-Xf-vdC">
|
|
18
|
+
<rect key="frame" x="0.0" y="0.0" width="393" height="852"/>
|
|
19
|
+
<autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
|
|
20
|
+
<subviews>
|
|
21
|
+
<view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="fFC-8f-zGO" customClass="CustomTopUIView" customModule="MyTatvaCare" customModuleProvider="target">
|
|
22
|
+
<rect key="frame" x="0.0" y="162" width="393" height="50"/>
|
|
23
|
+
<color key="backgroundColor" systemColor="systemBackgroundColor"/>
|
|
24
|
+
<constraints>
|
|
25
|
+
<constraint firstAttribute="height" constant="50" id="wjY-GE-Sah"/>
|
|
26
|
+
</constraints>
|
|
27
|
+
</view>
|
|
28
|
+
<tableView clipsSubviews="YES" contentMode="scaleToFill" bounces="NO" showsHorizontalScrollIndicator="NO" showsVerticalScrollIndicator="NO" bouncesZoom="NO" dataMode="prototypes" style="plain" separatorStyle="none" allowsSelection="NO" rowHeight="-1" estimatedRowHeight="-1" sectionHeaderHeight="-1" estimatedSectionHeaderHeight="-1" sectionFooterHeight="-1" estimatedSectionFooterHeight="-1" translatesAutoresizingMaskIntoConstraints="NO" id="fh5-Gi-ykn">
|
|
29
|
+
<rect key="frame" x="0.0" y="212" width="393" height="506"/>
|
|
30
|
+
<color key="backgroundColor" systemColor="systemBackgroundColor"/>
|
|
31
|
+
</tableView>
|
|
32
|
+
<view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="YhS-8W-Fy6" customClass="CustomOverlayButton" customModule="MyTatvaCare" customModuleProvider="target">
|
|
33
|
+
<rect key="frame" x="16" y="718" width="361" height="66"/>
|
|
34
|
+
<color key="backgroundColor" systemColor="systemBackgroundColor"/>
|
|
35
|
+
<constraints>
|
|
36
|
+
<constraint firstAttribute="height" constant="66" id="K3O-hb-Ury"/>
|
|
37
|
+
</constraints>
|
|
38
|
+
</view>
|
|
39
|
+
</subviews>
|
|
40
|
+
<viewLayoutGuide key="safeArea" id="6Tk-OE-BBY"/>
|
|
41
|
+
<color key="backgroundColor" systemColor="systemBackgroundColor"/>
|
|
42
|
+
<constraints>
|
|
43
|
+
<constraint firstItem="6Tk-OE-BBY" firstAttribute="trailing" secondItem="fh5-Gi-ykn" secondAttribute="trailing" id="0Es-KG-5vr"/>
|
|
44
|
+
<constraint firstItem="YhS-8W-Fy6" firstAttribute="bottom" secondItem="6Tk-OE-BBY" secondAttribute="bottom" id="6jA-dA-0nF"/>
|
|
45
|
+
<constraint firstItem="6Tk-OE-BBY" firstAttribute="trailing" secondItem="YhS-8W-Fy6" secondAttribute="trailing" constant="16" id="9Kn-PL-d0T"/>
|
|
46
|
+
<constraint firstItem="YhS-8W-Fy6" firstAttribute="top" secondItem="fh5-Gi-ykn" secondAttribute="bottom" id="E4e-0y-PiC"/>
|
|
47
|
+
<constraint firstItem="fFC-8f-zGO" firstAttribute="leading" secondItem="6Tk-OE-BBY" secondAttribute="leading" id="NpB-M3-ynx"/>
|
|
48
|
+
<constraint firstItem="fh5-Gi-ykn" firstAttribute="top" secondItem="fFC-8f-zGO" secondAttribute="bottom" id="Pya-GG-eY0"/>
|
|
49
|
+
<constraint firstItem="fh5-Gi-ykn" firstAttribute="leading" secondItem="6Tk-OE-BBY" secondAttribute="leading" id="cDp-cv-pfz"/>
|
|
50
|
+
<constraint firstItem="YhS-8W-Fy6" firstAttribute="leading" secondItem="6Tk-OE-BBY" secondAttribute="leading" constant="16" id="eHz-KQ-4tQ"/>
|
|
51
|
+
<constraint firstItem="6Tk-OE-BBY" firstAttribute="trailing" secondItem="fFC-8f-zGO" secondAttribute="trailing" id="mRU-yR-kTu"/>
|
|
52
|
+
<constraint firstItem="fFC-8f-zGO" firstAttribute="top" secondItem="6Tk-OE-BBY" secondAttribute="top" id="pwk-RW-sRU"/>
|
|
53
|
+
</constraints>
|
|
54
|
+
</view>
|
|
55
|
+
<navigationItem key="navigationItem" id="Poj-6q-1X1"/>
|
|
56
|
+
<connections>
|
|
57
|
+
<outlet property="customTopView" destination="fFC-8f-zGO" id="gQ8-rd-QrO"/>
|
|
58
|
+
<outlet property="startConnectionJourneyButton" destination="YhS-8W-Fy6" id="JfF-Zc-Tqr"/>
|
|
59
|
+
<outlet property="tableView" destination="fh5-Gi-ykn" id="OSu-83-NLx"/>
|
|
60
|
+
</connections>
|
|
61
|
+
</viewController>
|
|
62
|
+
<placeholder placeholderIdentifier="IBFirstResponder" id="dkx-z0-nzr" sceneMemberID="firstResponder"/>
|
|
63
|
+
</objects>
|
|
64
|
+
<point key="canvasLocation" x="1042.0289855072465" y="-27.455357142857142"/>
|
|
65
|
+
</scene>
|
|
66
|
+
<!--Provide Permission View Controller-->
|
|
67
|
+
<scene sceneID="giy-XB-gLf">
|
|
68
|
+
<objects>
|
|
69
|
+
<viewController storyboardIdentifier="ProvidePermissionViewController" id="4Tj-gn-ltx" customClass="ProvidePermissionViewController" customModule="MyTatvaCare" customModuleProvider="target" sceneMemberID="viewController">
|
|
70
|
+
<view key="view" contentMode="scaleToFill" id="Pyo-xo-npM">
|
|
71
|
+
<rect key="frame" x="0.0" y="0.0" width="393" height="852"/>
|
|
72
|
+
<autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
|
|
73
|
+
<subviews>
|
|
74
|
+
<view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="XDU-Zi-fE4" customClass="CustomStepProgressBar" customModule="MyTatvaCare" customModuleProvider="target">
|
|
75
|
+
<rect key="frame" x="0.0" y="168" width="393" height="50"/>
|
|
76
|
+
<color key="backgroundColor" systemColor="systemBackgroundColor"/>
|
|
77
|
+
<constraints>
|
|
78
|
+
<constraint firstAttribute="height" constant="50" id="K14-fi-MgF"/>
|
|
79
|
+
</constraints>
|
|
80
|
+
<userDefinedRuntimeAttributes>
|
|
81
|
+
<userDefinedRuntimeAttribute type="number" keyPath="largeIndex2">
|
|
82
|
+
<integer key="value" value="0"/>
|
|
83
|
+
</userDefinedRuntimeAttribute>
|
|
84
|
+
<userDefinedRuntimeAttribute type="string" keyPath="largeIndex1Title" value="Provide permission"/>
|
|
85
|
+
<userDefinedRuntimeAttribute type="string" keyPath="largeIndex2Title" value="connect transmitter"/>
|
|
86
|
+
<userDefinedRuntimeAttribute type="number" keyPath="largeIndex1">
|
|
87
|
+
<integer key="value" value="1"/>
|
|
88
|
+
</userDefinedRuntimeAttribute>
|
|
89
|
+
<userDefinedRuntimeAttribute type="color" keyPath="stepColor1">
|
|
90
|
+
<color key="value" name="indigo"/>
|
|
91
|
+
</userDefinedRuntimeAttribute>
|
|
92
|
+
<userDefinedRuntimeAttribute type="color" keyPath="stepColor2">
|
|
93
|
+
<color key="value" name="unselectedGray"/>
|
|
94
|
+
</userDefinedRuntimeAttribute>
|
|
95
|
+
<userDefinedRuntimeAttribute type="color" keyPath="stepColor3">
|
|
96
|
+
<color key="value" name="unselectedGray"/>
|
|
97
|
+
</userDefinedRuntimeAttribute>
|
|
98
|
+
<userDefinedRuntimeAttribute type="color" keyPath="stepColor4">
|
|
99
|
+
<color key="value" name="unselectedGray"/>
|
|
100
|
+
</userDefinedRuntimeAttribute>
|
|
101
|
+
<userDefinedRuntimeAttribute type="color" keyPath="stepColor5">
|
|
102
|
+
<color key="value" name="unselectedGray"/>
|
|
103
|
+
</userDefinedRuntimeAttribute>
|
|
104
|
+
</userDefinedRuntimeAttributes>
|
|
105
|
+
</view>
|
|
106
|
+
<view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="rSx-yY-DdK" customClass="CustomTopUIView" customModule="MyTatvaCare" customModuleProvider="target">
|
|
107
|
+
<rect key="frame" x="0.0" y="118" width="393" height="50"/>
|
|
108
|
+
<color key="backgroundColor" systemColor="systemBackgroundColor"/>
|
|
109
|
+
<constraints>
|
|
110
|
+
<constraint firstAttribute="height" constant="50" id="aiE-bd-1tZ"/>
|
|
111
|
+
</constraints>
|
|
112
|
+
</view>
|
|
113
|
+
<tableView clipsSubviews="YES" contentMode="scaleToFill" bounces="NO" showsHorizontalScrollIndicator="NO" showsVerticalScrollIndicator="NO" bouncesZoom="NO" dataMode="prototypes" style="plain" separatorStyle="none" allowsSelection="NO" rowHeight="-1" estimatedRowHeight="-1" sectionHeaderHeight="-1" estimatedSectionHeaderHeight="-1" sectionFooterHeight="-1" estimatedSectionFooterHeight="-1" translatesAutoresizingMaskIntoConstraints="NO" id="1vf-ou-Qmv">
|
|
114
|
+
<rect key="frame" x="0.0" y="218" width="393" height="500"/>
|
|
115
|
+
<color key="backgroundColor" systemColor="systemBackgroundColor"/>
|
|
116
|
+
</tableView>
|
|
117
|
+
<view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="AQl-Jn-Wa0" customClass="CustomOverlayButton" customModule="MyTatvaCare" customModuleProvider="target">
|
|
118
|
+
<rect key="frame" x="16" y="718" width="361" height="66"/>
|
|
119
|
+
<color key="backgroundColor" systemColor="systemBackgroundColor"/>
|
|
120
|
+
<constraints>
|
|
121
|
+
<constraint firstAttribute="height" constant="66" id="sIT-eW-BCD"/>
|
|
122
|
+
</constraints>
|
|
123
|
+
</view>
|
|
124
|
+
</subviews>
|
|
125
|
+
<viewLayoutGuide key="safeArea" id="uJd-Zk-nER"/>
|
|
126
|
+
<color key="backgroundColor" systemColor="systemBackgroundColor"/>
|
|
127
|
+
<constraints>
|
|
128
|
+
<constraint firstItem="1vf-ou-Qmv" firstAttribute="leading" secondItem="uJd-Zk-nER" secondAttribute="leading" id="3eT-C7-Hax"/>
|
|
129
|
+
<constraint firstItem="XDU-Zi-fE4" firstAttribute="top" secondItem="rSx-yY-DdK" secondAttribute="bottom" id="Dek-aM-wno"/>
|
|
130
|
+
<constraint firstItem="rSx-yY-DdK" firstAttribute="leading" secondItem="uJd-Zk-nER" secondAttribute="leading" id="GDT-rc-usK"/>
|
|
131
|
+
<constraint firstItem="1vf-ou-Qmv" firstAttribute="top" secondItem="XDU-Zi-fE4" secondAttribute="bottom" id="GT5-uV-zIb"/>
|
|
132
|
+
<constraint firstItem="XDU-Zi-fE4" firstAttribute="leading" secondItem="uJd-Zk-nER" secondAttribute="leading" id="KOc-YE-oMO"/>
|
|
133
|
+
<constraint firstItem="uJd-Zk-nER" firstAttribute="trailing" secondItem="AQl-Jn-Wa0" secondAttribute="trailing" constant="16" id="Kan-Vq-1AH"/>
|
|
134
|
+
<constraint firstItem="rSx-yY-DdK" firstAttribute="top" secondItem="uJd-Zk-nER" secondAttribute="top" id="LrK-aO-4r5"/>
|
|
135
|
+
<constraint firstItem="uJd-Zk-nER" firstAttribute="trailing" secondItem="rSx-yY-DdK" secondAttribute="trailing" id="Qcb-RN-neb"/>
|
|
136
|
+
<constraint firstItem="AQl-Jn-Wa0" firstAttribute="top" secondItem="1vf-ou-Qmv" secondAttribute="bottom" id="VvZ-6T-X9P"/>
|
|
137
|
+
<constraint firstItem="uJd-Zk-nER" firstAttribute="trailing" secondItem="1vf-ou-Qmv" secondAttribute="trailing" id="fTj-Hd-Y8v"/>
|
|
138
|
+
<constraint firstItem="uJd-Zk-nER" firstAttribute="trailing" secondItem="XDU-Zi-fE4" secondAttribute="trailing" id="gBB-sM-YUa"/>
|
|
139
|
+
<constraint firstItem="AQl-Jn-Wa0" firstAttribute="bottom" secondItem="uJd-Zk-nER" secondAttribute="bottom" id="oDf-TP-xgt"/>
|
|
140
|
+
<constraint firstItem="AQl-Jn-Wa0" firstAttribute="leading" secondItem="uJd-Zk-nER" secondAttribute="leading" constant="16" id="sv3-tz-mIA"/>
|
|
141
|
+
</constraints>
|
|
142
|
+
</view>
|
|
143
|
+
<connections>
|
|
144
|
+
<outlet property="bottomButton" destination="AQl-Jn-Wa0" id="kJv-4F-HB1"/>
|
|
145
|
+
<outlet property="customTopView" destination="rSx-yY-DdK" id="Otb-RN-uNz"/>
|
|
146
|
+
<outlet property="tableView" destination="1vf-ou-Qmv" id="ELm-yD-zQB"/>
|
|
147
|
+
</connections>
|
|
148
|
+
</viewController>
|
|
149
|
+
<placeholder placeholderIdentifier="IBFirstResponder" id="M0k-K8-fEo" sceneMemberID="firstResponder"/>
|
|
150
|
+
</objects>
|
|
151
|
+
<point key="canvasLocation" x="1755.072463768116" y="-27.455357142857142"/>
|
|
152
|
+
</scene>
|
|
153
|
+
<!--Put On The Sensor View Controller-->
|
|
154
|
+
<scene sceneID="jYO-74-Hja">
|
|
155
|
+
<objects>
|
|
156
|
+
<viewController storyboardIdentifier="PutOnTheSensorViewController" id="nIE-ZJ-p2j" customClass="PutOnTheSensorViewController" customModule="MyTatvaCare" customModuleProvider="target" sceneMemberID="viewController">
|
|
157
|
+
<view key="view" contentMode="scaleToFill" id="QWz-d3-hVY">
|
|
158
|
+
<rect key="frame" x="0.0" y="0.0" width="393" height="852"/>
|
|
159
|
+
<autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
|
|
160
|
+
<subviews>
|
|
161
|
+
<view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="fH3-bH-YxA" customClass="CustomTopUIView" customModule="MyTatvaCare" customModuleProvider="target">
|
|
162
|
+
<rect key="frame" x="0.0" y="118" width="393" height="50"/>
|
|
163
|
+
<color key="backgroundColor" systemColor="systemBackgroundColor"/>
|
|
164
|
+
<constraints>
|
|
165
|
+
<constraint firstAttribute="height" constant="50" id="Tqw-Jl-0hv"/>
|
|
166
|
+
</constraints>
|
|
167
|
+
</view>
|
|
168
|
+
<imageView clipsSubviews="YES" userInteractionEnabled="NO" contentMode="scaleAspectFit" horizontalHuggingPriority="251" verticalHuggingPriority="251" image="mandala" translatesAutoresizingMaskIntoConstraints="NO" id="crM-eS-ayc">
|
|
169
|
+
<rect key="frame" x="0.0" y="632" width="393" height="194"/>
|
|
170
|
+
<constraints>
|
|
171
|
+
<constraint firstAttribute="height" constant="194" id="hX5-gh-vZG"/>
|
|
172
|
+
</constraints>
|
|
173
|
+
</imageView>
|
|
174
|
+
<tableView clipsSubviews="YES" contentMode="scaleToFill" bounces="NO" showsHorizontalScrollIndicator="NO" showsVerticalScrollIndicator="NO" bouncesZoom="NO" dataMode="prototypes" style="plain" separatorStyle="none" allowsSelection="NO" rowHeight="-1" estimatedRowHeight="-1" sectionHeaderHeight="-1" estimatedSectionHeaderHeight="-1" sectionFooterHeight="-1" estimatedSectionFooterHeight="-1" translatesAutoresizingMaskIntoConstraints="NO" id="i12-6A-QOu">
|
|
175
|
+
<rect key="frame" x="0.0" y="218" width="393" height="500"/>
|
|
176
|
+
<color key="backgroundColor" white="0.0" alpha="0.0" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
|
|
177
|
+
</tableView>
|
|
178
|
+
<view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="CmY-eg-8go">
|
|
179
|
+
<rect key="frame" x="0.0" y="710" width="393" height="142"/>
|
|
180
|
+
<color key="backgroundColor" systemColor="systemBackgroundColor"/>
|
|
181
|
+
</view>
|
|
182
|
+
<view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="XFB-fg-Bkm" customClass="CustomOverlayButton" customModule="MyTatvaCare" customModuleProvider="target">
|
|
183
|
+
<rect key="frame" x="16" y="718" width="361" height="66"/>
|
|
184
|
+
<color key="backgroundColor" systemColor="systemBackgroundColor"/>
|
|
185
|
+
<constraints>
|
|
186
|
+
<constraint firstAttribute="height" constant="66" id="ONd-Dx-0RW"/>
|
|
187
|
+
</constraints>
|
|
188
|
+
</view>
|
|
189
|
+
<view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="x0O-jV-obj" customClass="CustomStepProgressBar" customModule="MyTatvaCare" customModuleProvider="target">
|
|
190
|
+
<rect key="frame" x="0.0" y="168" width="393" height="50"/>
|
|
191
|
+
<color key="backgroundColor" systemColor="systemBackgroundColor"/>
|
|
192
|
+
<constraints>
|
|
193
|
+
<constraint firstAttribute="height" constant="50" id="XB7-fH-wfQ"/>
|
|
194
|
+
</constraints>
|
|
195
|
+
<userDefinedRuntimeAttributes>
|
|
196
|
+
<userDefinedRuntimeAttribute type="number" keyPath="largeIndex2">
|
|
197
|
+
<integer key="value" value="0"/>
|
|
198
|
+
</userDefinedRuntimeAttribute>
|
|
199
|
+
<userDefinedRuntimeAttribute type="string" keyPath="largeIndex1Title" value="Provide permission"/>
|
|
200
|
+
<userDefinedRuntimeAttribute type="string" keyPath="largeIndex2Title" value="connect transmitter"/>
|
|
201
|
+
<userDefinedRuntimeAttribute type="number" keyPath="largeIndex1">
|
|
202
|
+
<integer key="value" value="1"/>
|
|
203
|
+
</userDefinedRuntimeAttribute>
|
|
204
|
+
<userDefinedRuntimeAttribute type="color" keyPath="stepColor1">
|
|
205
|
+
<color key="value" name="green"/>
|
|
206
|
+
</userDefinedRuntimeAttribute>
|
|
207
|
+
<userDefinedRuntimeAttribute type="color" keyPath="stepColor2">
|
|
208
|
+
<color key="value" name="green"/>
|
|
209
|
+
</userDefinedRuntimeAttribute>
|
|
210
|
+
<userDefinedRuntimeAttribute type="color" keyPath="stepColor3">
|
|
211
|
+
<color key="value" name="green"/>
|
|
212
|
+
</userDefinedRuntimeAttribute>
|
|
213
|
+
<userDefinedRuntimeAttribute type="color" keyPath="stepColor4">
|
|
214
|
+
<color key="value" name="indigo"/>
|
|
215
|
+
</userDefinedRuntimeAttribute>
|
|
216
|
+
<userDefinedRuntimeAttribute type="color" keyPath="stepColor5">
|
|
217
|
+
<color key="value" name="unselectedGray"/>
|
|
218
|
+
</userDefinedRuntimeAttribute>
|
|
219
|
+
<userDefinedRuntimeAttribute type="number" keyPath="currentIndex">
|
|
220
|
+
<integer key="value" value="3"/>
|
|
221
|
+
</userDefinedRuntimeAttribute>
|
|
222
|
+
<userDefinedRuntimeAttribute type="string" keyPath="currentTitle" value="Place Sensor"/>
|
|
223
|
+
<userDefinedRuntimeAttribute type="number" keyPath="totalSteps">
|
|
224
|
+
<integer key="value" value="5"/>
|
|
225
|
+
</userDefinedRuntimeAttribute>
|
|
226
|
+
<userDefinedRuntimeAttribute type="string" keyPath="nextTitle" value="Place Transmitter"/>
|
|
227
|
+
</userDefinedRuntimeAttributes>
|
|
228
|
+
</view>
|
|
229
|
+
</subviews>
|
|
230
|
+
<viewLayoutGuide key="safeArea" id="VJY-LF-TFB"/>
|
|
231
|
+
<color key="backgroundColor" systemColor="systemBackgroundColor"/>
|
|
232
|
+
<constraints>
|
|
233
|
+
<constraint firstItem="VJY-LF-TFB" firstAttribute="trailing" secondItem="x0O-jV-obj" secondAttribute="trailing" id="3Qy-GX-ygU"/>
|
|
234
|
+
<constraint firstItem="crM-eS-ayc" firstAttribute="top" secondItem="XFB-fg-Bkm" secondAttribute="top" constant="-86" id="3uD-uP-GMz"/>
|
|
235
|
+
<constraint firstItem="crM-eS-ayc" firstAttribute="trailing" secondItem="VJY-LF-TFB" secondAttribute="trailing" id="6mv-xH-8Nl"/>
|
|
236
|
+
<constraint firstItem="CmY-eg-8go" firstAttribute="leading" secondItem="VJY-LF-TFB" secondAttribute="leading" id="BHP-ff-jAf"/>
|
|
237
|
+
<constraint firstItem="XFB-fg-Bkm" firstAttribute="bottom" secondItem="VJY-LF-TFB" secondAttribute="bottom" id="Hpn-bJ-wSb"/>
|
|
238
|
+
<constraint firstItem="CmY-eg-8go" firstAttribute="trailing" secondItem="VJY-LF-TFB" secondAttribute="trailing" id="Ka8-qg-KrH"/>
|
|
239
|
+
<constraint firstItem="x0O-jV-obj" firstAttribute="top" secondItem="fH3-bH-YxA" secondAttribute="bottom" id="Lj6-Vl-fgZ"/>
|
|
240
|
+
<constraint firstItem="CmY-eg-8go" firstAttribute="top" secondItem="XFB-fg-Bkm" secondAttribute="top" constant="-8" id="OwG-J1-cok"/>
|
|
241
|
+
<constraint firstItem="VJY-LF-TFB" firstAttribute="trailing" secondItem="i12-6A-QOu" secondAttribute="trailing" id="QJo-i2-1rU"/>
|
|
242
|
+
<constraint firstItem="crM-eS-ayc" firstAttribute="leading" secondItem="VJY-LF-TFB" secondAttribute="leading" id="TNk-Uo-UcN"/>
|
|
243
|
+
<constraint firstItem="XFB-fg-Bkm" firstAttribute="top" secondItem="i12-6A-QOu" secondAttribute="bottom" id="Vpa-Ye-K2W"/>
|
|
244
|
+
<constraint firstItem="x0O-jV-obj" firstAttribute="leading" secondItem="QWz-d3-hVY" secondAttribute="leading" id="ZOC-bQ-ctU"/>
|
|
245
|
+
<constraint firstItem="VJY-LF-TFB" firstAttribute="trailing" secondItem="XFB-fg-Bkm" secondAttribute="trailing" constant="16" id="d7p-1a-o4i"/>
|
|
246
|
+
<constraint firstItem="i12-6A-QOu" firstAttribute="leading" secondItem="VJY-LF-TFB" secondAttribute="leading" id="hGy-zY-K5g"/>
|
|
247
|
+
<constraint firstAttribute="bottom" secondItem="CmY-eg-8go" secondAttribute="bottom" id="i4J-xx-I9g"/>
|
|
248
|
+
<constraint firstItem="fH3-bH-YxA" firstAttribute="leading" secondItem="VJY-LF-TFB" secondAttribute="leading" id="j1w-kp-A0o"/>
|
|
249
|
+
<constraint firstItem="VJY-LF-TFB" firstAttribute="trailing" secondItem="fH3-bH-YxA" secondAttribute="trailing" id="j3W-uH-N0J"/>
|
|
250
|
+
<constraint firstItem="i12-6A-QOu" firstAttribute="top" secondItem="x0O-jV-obj" secondAttribute="bottom" id="kvA-cD-YeF"/>
|
|
251
|
+
<constraint firstItem="XFB-fg-Bkm" firstAttribute="leading" secondItem="VJY-LF-TFB" secondAttribute="leading" constant="16" id="nDD-rP-CmB"/>
|
|
252
|
+
<constraint firstItem="fH3-bH-YxA" firstAttribute="top" secondItem="VJY-LF-TFB" secondAttribute="top" id="r8D-bP-jWn"/>
|
|
253
|
+
</constraints>
|
|
254
|
+
</view>
|
|
255
|
+
<connections>
|
|
256
|
+
<outlet property="bottomButton" destination="XFB-fg-Bkm" id="Lq4-qQ-zej"/>
|
|
257
|
+
<outlet property="customTopView" destination="fH3-bH-YxA" id="tko-IJ-xQK"/>
|
|
258
|
+
<outlet property="tableView" destination="i12-6A-QOu" id="Fcc-sv-X7x"/>
|
|
259
|
+
</connections>
|
|
260
|
+
</viewController>
|
|
261
|
+
<placeholder placeholderIdentifier="IBFirstResponder" id="BFw-PK-V7k" sceneMemberID="firstResponder"/>
|
|
262
|
+
</objects>
|
|
263
|
+
<point key="canvasLocation" x="3773.913043478261" y="-27.455357142857142"/>
|
|
264
|
+
</scene>
|
|
265
|
+
<!--Attach Transmitter View Controller-->
|
|
266
|
+
<scene sceneID="kmN-ZH-pgG">
|
|
267
|
+
<objects>
|
|
268
|
+
<viewController storyboardIdentifier="AttachTransmitterViewController" id="djR-go-CT2" customClass="AttachTransmitterViewController" customModule="MyTatvaCare" customModuleProvider="target" sceneMemberID="viewController">
|
|
269
|
+
<view key="view" contentMode="scaleToFill" id="EO5-DJ-YB4">
|
|
270
|
+
<rect key="frame" x="0.0" y="0.0" width="393" height="852"/>
|
|
271
|
+
<autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
|
|
272
|
+
<subviews>
|
|
273
|
+
<view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="haN-BL-ASF" customClass="CustomTopUIView" customModule="MyTatvaCare" customModuleProvider="target">
|
|
274
|
+
<rect key="frame" x="0.0" y="118" width="393" height="50"/>
|
|
275
|
+
<color key="backgroundColor" systemColor="systemBackgroundColor"/>
|
|
276
|
+
<constraints>
|
|
277
|
+
<constraint firstAttribute="height" constant="50" id="yW0-QC-kR5"/>
|
|
278
|
+
</constraints>
|
|
279
|
+
</view>
|
|
280
|
+
<tableView clipsSubviews="YES" contentMode="scaleToFill" bounces="NO" showsHorizontalScrollIndicator="NO" showsVerticalScrollIndicator="NO" bouncesZoom="NO" dataMode="prototypes" style="plain" separatorStyle="none" allowsSelection="NO" rowHeight="-1" estimatedRowHeight="-1" sectionHeaderHeight="-1" estimatedSectionHeaderHeight="-1" sectionFooterHeight="-1" estimatedSectionFooterHeight="-1" translatesAutoresizingMaskIntoConstraints="NO" id="yzp-ig-pvY">
|
|
281
|
+
<rect key="frame" x="0.0" y="218" width="393" height="500"/>
|
|
282
|
+
<color key="backgroundColor" systemColor="systemBackgroundColor"/>
|
|
283
|
+
</tableView>
|
|
284
|
+
<imageView clipsSubviews="YES" userInteractionEnabled="NO" contentMode="scaleAspectFit" horizontalHuggingPriority="251" verticalHuggingPriority="251" image="mandala" translatesAutoresizingMaskIntoConstraints="NO" id="hwc-Oa-iYH">
|
|
285
|
+
<rect key="frame" x="0.0" y="632" width="393" height="194"/>
|
|
286
|
+
<constraints>
|
|
287
|
+
<constraint firstAttribute="height" constant="194" id="QdS-Zu-X3b"/>
|
|
288
|
+
</constraints>
|
|
289
|
+
</imageView>
|
|
290
|
+
<view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="l0o-eD-Pb5">
|
|
291
|
+
<rect key="frame" x="0.0" y="710" width="393" height="142"/>
|
|
292
|
+
<color key="backgroundColor" systemColor="systemBackgroundColor"/>
|
|
293
|
+
</view>
|
|
294
|
+
<stackView opaque="NO" contentMode="scaleToFill" distribution="fillEqually" spacing="16" translatesAutoresizingMaskIntoConstraints="NO" id="Kbd-47-Mnv">
|
|
295
|
+
<rect key="frame" x="16" y="718" width="361" height="66"/>
|
|
296
|
+
<subviews>
|
|
297
|
+
<view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="NeN-5b-i9Q" customClass="CustomOverlayButton" customModule="MyTatvaCare" customModuleProvider="target">
|
|
298
|
+
<rect key="frame" x="0.0" y="0.0" width="172.66666666666666" height="66"/>
|
|
299
|
+
<color key="backgroundColor" systemColor="systemBackgroundColor"/>
|
|
300
|
+
<constraints>
|
|
301
|
+
<constraint firstAttribute="height" constant="66" id="19t-dJ-9VC"/>
|
|
302
|
+
</constraints>
|
|
303
|
+
</view>
|
|
304
|
+
<view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="tJh-81-YZB" customClass="CustomOverlayButton" customModule="MyTatvaCare" customModuleProvider="target">
|
|
305
|
+
<rect key="frame" x="188.66666666666663" y="0.0" width="172.33333333333337" height="66"/>
|
|
306
|
+
<color key="backgroundColor" systemColor="systemBackgroundColor"/>
|
|
307
|
+
<constraints>
|
|
308
|
+
<constraint firstAttribute="height" constant="66" id="Y82-Eg-irN"/>
|
|
309
|
+
</constraints>
|
|
310
|
+
</view>
|
|
311
|
+
</subviews>
|
|
312
|
+
</stackView>
|
|
313
|
+
<view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="4tM-0Q-AXJ" customClass="CustomStepProgressBar" customModule="MyTatvaCare" customModuleProvider="target">
|
|
314
|
+
<rect key="frame" x="0.0" y="168" width="393" height="50"/>
|
|
315
|
+
<color key="backgroundColor" systemColor="systemBackgroundColor"/>
|
|
316
|
+
<constraints>
|
|
317
|
+
<constraint firstAttribute="height" constant="50" id="e9u-51-9h6"/>
|
|
318
|
+
</constraints>
|
|
319
|
+
<userDefinedRuntimeAttributes>
|
|
320
|
+
<userDefinedRuntimeAttribute type="number" keyPath="largeIndex2">
|
|
321
|
+
<integer key="value" value="0"/>
|
|
322
|
+
</userDefinedRuntimeAttribute>
|
|
323
|
+
<userDefinedRuntimeAttribute type="string" keyPath="largeIndex1Title" value="Provide permission"/>
|
|
324
|
+
<userDefinedRuntimeAttribute type="string" keyPath="largeIndex2Title" value="connect transmitter"/>
|
|
325
|
+
<userDefinedRuntimeAttribute type="number" keyPath="largeIndex1">
|
|
326
|
+
<integer key="value" value="1"/>
|
|
327
|
+
</userDefinedRuntimeAttribute>
|
|
328
|
+
<userDefinedRuntimeAttribute type="color" keyPath="stepColor1">
|
|
329
|
+
<color key="value" name="green"/>
|
|
330
|
+
</userDefinedRuntimeAttribute>
|
|
331
|
+
<userDefinedRuntimeAttribute type="color" keyPath="stepColor2">
|
|
332
|
+
<color key="value" name="green"/>
|
|
333
|
+
</userDefinedRuntimeAttribute>
|
|
334
|
+
<userDefinedRuntimeAttribute type="color" keyPath="stepColor3">
|
|
335
|
+
<color key="value" name="green"/>
|
|
336
|
+
</userDefinedRuntimeAttribute>
|
|
337
|
+
<userDefinedRuntimeAttribute type="color" keyPath="stepColor4">
|
|
338
|
+
<color key="value" name="green"/>
|
|
339
|
+
</userDefinedRuntimeAttribute>
|
|
340
|
+
<userDefinedRuntimeAttribute type="color" keyPath="stepColor5">
|
|
341
|
+
<color key="value" name="indigo"/>
|
|
342
|
+
</userDefinedRuntimeAttribute>
|
|
343
|
+
<userDefinedRuntimeAttribute type="number" keyPath="currentIndex">
|
|
344
|
+
<integer key="value" value="3"/>
|
|
345
|
+
</userDefinedRuntimeAttribute>
|
|
346
|
+
<userDefinedRuntimeAttribute type="string" keyPath="currentTitle" value="Place Sensor"/>
|
|
347
|
+
<userDefinedRuntimeAttribute type="number" keyPath="totalSteps">
|
|
348
|
+
<integer key="value" value="5"/>
|
|
349
|
+
</userDefinedRuntimeAttribute>
|
|
350
|
+
<userDefinedRuntimeAttribute type="string" keyPath="nextTitle" value="Place Transmitter"/>
|
|
351
|
+
</userDefinedRuntimeAttributes>
|
|
352
|
+
</view>
|
|
353
|
+
</subviews>
|
|
354
|
+
<viewLayoutGuide key="safeArea" id="Ata-kW-v60"/>
|
|
355
|
+
<color key="backgroundColor" systemColor="systemBackgroundColor"/>
|
|
356
|
+
<constraints>
|
|
357
|
+
<constraint firstItem="Ata-kW-v60" firstAttribute="trailing" secondItem="Kbd-47-Mnv" secondAttribute="trailing" constant="16" id="1bc-bj-mUC"/>
|
|
358
|
+
<constraint firstAttribute="bottom" secondItem="l0o-eD-Pb5" secondAttribute="bottom" id="30q-ww-HZu"/>
|
|
359
|
+
<constraint firstItem="4tM-0Q-AXJ" firstAttribute="leading" secondItem="Ata-kW-v60" secondAttribute="leading" id="6kM-dM-DG1"/>
|
|
360
|
+
<constraint firstItem="haN-BL-ASF" firstAttribute="leading" secondItem="Ata-kW-v60" secondAttribute="leading" id="7QI-Vn-2JW"/>
|
|
361
|
+
<constraint firstItem="Ata-kW-v60" firstAttribute="trailing" secondItem="hwc-Oa-iYH" secondAttribute="trailing" id="8o1-Iu-z4S"/>
|
|
362
|
+
<constraint firstItem="yzp-ig-pvY" firstAttribute="leading" secondItem="Ata-kW-v60" secondAttribute="leading" id="Bav-fq-Lyq"/>
|
|
363
|
+
<constraint firstItem="Kbd-47-Mnv" firstAttribute="top" secondItem="yzp-ig-pvY" secondAttribute="bottom" id="DXu-tJ-hoD"/>
|
|
364
|
+
<constraint firstItem="Kbd-47-Mnv" firstAttribute="bottom" secondItem="Ata-kW-v60" secondAttribute="bottom" id="ID7-Bp-tVH"/>
|
|
365
|
+
<constraint firstItem="Ata-kW-v60" firstAttribute="trailing" secondItem="yzp-ig-pvY" secondAttribute="trailing" id="Ipb-dI-59x"/>
|
|
366
|
+
<constraint firstItem="hwc-Oa-iYH" firstAttribute="top" secondItem="Kbd-47-Mnv" secondAttribute="top" constant="-86" id="OVp-Y7-ULa"/>
|
|
367
|
+
<constraint firstItem="Ata-kW-v60" firstAttribute="trailing" secondItem="haN-BL-ASF" secondAttribute="trailing" id="VcL-eH-YK2"/>
|
|
368
|
+
<constraint firstItem="hwc-Oa-iYH" firstAttribute="leading" secondItem="Ata-kW-v60" secondAttribute="leading" id="WD1-NE-es7"/>
|
|
369
|
+
<constraint firstItem="Kbd-47-Mnv" firstAttribute="leading" secondItem="Ata-kW-v60" secondAttribute="leading" constant="16" id="ZCt-cn-Biv"/>
|
|
370
|
+
<constraint firstAttribute="trailing" secondItem="l0o-eD-Pb5" secondAttribute="trailing" id="cz0-Na-Nn7"/>
|
|
371
|
+
<constraint firstItem="yzp-ig-pvY" firstAttribute="top" secondItem="4tM-0Q-AXJ" secondAttribute="bottom" id="d7T-lt-5Wh"/>
|
|
372
|
+
<constraint firstItem="4tM-0Q-AXJ" firstAttribute="top" secondItem="haN-BL-ASF" secondAttribute="bottom" id="eJZ-KK-4sJ"/>
|
|
373
|
+
<constraint firstItem="l0o-eD-Pb5" firstAttribute="top" secondItem="Kbd-47-Mnv" secondAttribute="top" constant="-8" id="fXg-Ks-3QW"/>
|
|
374
|
+
<constraint firstAttribute="trailing" secondItem="4tM-0Q-AXJ" secondAttribute="trailing" id="ocx-a5-8s1"/>
|
|
375
|
+
<constraint firstItem="haN-BL-ASF" firstAttribute="top" secondItem="Ata-kW-v60" secondAttribute="top" id="qqf-ME-A71"/>
|
|
376
|
+
<constraint firstItem="l0o-eD-Pb5" firstAttribute="leading" secondItem="Ata-kW-v60" secondAttribute="leading" id="rCJ-FM-L1X"/>
|
|
377
|
+
</constraints>
|
|
378
|
+
</view>
|
|
379
|
+
<connections>
|
|
380
|
+
<outlet property="bottomButton" destination="tJh-81-YZB" id="4bS-n5-zJB"/>
|
|
381
|
+
<outlet property="customTopView" destination="haN-BL-ASF" id="e2X-bw-ujD"/>
|
|
382
|
+
<outlet property="previousButton" destination="NeN-5b-i9Q" id="WuJ-Fy-BYK"/>
|
|
383
|
+
<outlet property="tableView" destination="yzp-ig-pvY" id="SeN-i8-oGQ"/>
|
|
384
|
+
</connections>
|
|
385
|
+
</viewController>
|
|
386
|
+
<placeholder placeholderIdentifier="IBFirstResponder" id="mIo-Cf-Ove" sceneMemberID="firstResponder"/>
|
|
387
|
+
</objects>
|
|
388
|
+
<point key="canvasLocation" x="4450.7246376811599" y="-27.455357142857142"/>
|
|
389
|
+
</scene>
|
|
390
|
+
<!--Connect To Transmitter View Controller-->
|
|
391
|
+
<scene sceneID="ZZw-G0-9lO">
|
|
392
|
+
<objects>
|
|
393
|
+
<viewController storyboardIdentifier="ConnectToTransmitterViewController" id="ZVS-jp-51w" customClass="ConnectToTransmitterViewController" customModule="MyTatvaCare" customModuleProvider="target" sceneMemberID="viewController">
|
|
394
|
+
<view key="view" contentMode="scaleToFill" id="m1Y-dl-cWv">
|
|
395
|
+
<rect key="frame" x="0.0" y="0.0" width="393" height="852"/>
|
|
396
|
+
<autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
|
|
397
|
+
<subviews>
|
|
398
|
+
<view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="AkJ-se-Ei7" customClass="CustomTopUIView" customModule="MyTatvaCare" customModuleProvider="target">
|
|
399
|
+
<rect key="frame" x="0.0" y="118" width="393" height="50"/>
|
|
400
|
+
<color key="backgroundColor" systemColor="systemBackgroundColor"/>
|
|
401
|
+
<constraints>
|
|
402
|
+
<constraint firstAttribute="height" constant="50" id="g3g-P4-aP5"/>
|
|
403
|
+
</constraints>
|
|
404
|
+
</view>
|
|
405
|
+
<tableView clipsSubviews="YES" contentMode="scaleToFill" bounces="NO" showsHorizontalScrollIndicator="NO" showsVerticalScrollIndicator="NO" bouncesZoom="NO" dataMode="prototypes" style="plain" separatorStyle="none" allowsSelection="NO" rowHeight="-1" estimatedRowHeight="-1" sectionHeaderHeight="-1" estimatedSectionHeaderHeight="-1" sectionFooterHeight="-1" estimatedSectionFooterHeight="-1" translatesAutoresizingMaskIntoConstraints="NO" id="trT-VU-g4T">
|
|
406
|
+
<rect key="frame" x="0.0" y="218" width="393" height="500"/>
|
|
407
|
+
<color key="backgroundColor" systemColor="systemBackgroundColor"/>
|
|
408
|
+
</tableView>
|
|
409
|
+
<stackView opaque="NO" contentMode="scaleToFill" distribution="fillEqually" spacing="16" translatesAutoresizingMaskIntoConstraints="NO" id="sKn-Lj-c6a">
|
|
410
|
+
<rect key="frame" x="16" y="718" width="361" height="66"/>
|
|
411
|
+
<subviews>
|
|
412
|
+
<view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="5mf-WM-nZT" customClass="CustomOverlayButton" customModule="MyTatvaCare" customModuleProvider="target">
|
|
413
|
+
<rect key="frame" x="0.0" y="0.0" width="172.66666666666666" height="66"/>
|
|
414
|
+
<color key="backgroundColor" systemColor="systemBackgroundColor"/>
|
|
415
|
+
<constraints>
|
|
416
|
+
<constraint firstAttribute="height" constant="66" id="4Wp-Ej-3Jd"/>
|
|
417
|
+
</constraints>
|
|
418
|
+
</view>
|
|
419
|
+
<view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="Bah-3w-oOu" customClass="CustomOverlayButton" customModule="MyTatvaCare" customModuleProvider="target">
|
|
420
|
+
<rect key="frame" x="188.66666666666663" y="0.0" width="172.33333333333337" height="66"/>
|
|
421
|
+
<color key="backgroundColor" systemColor="systemBackgroundColor"/>
|
|
422
|
+
<constraints>
|
|
423
|
+
<constraint firstAttribute="height" constant="66" id="6Wb-ca-eow"/>
|
|
424
|
+
</constraints>
|
|
425
|
+
</view>
|
|
426
|
+
</subviews>
|
|
427
|
+
</stackView>
|
|
428
|
+
<view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="kp5-Fq-Vw1" customClass="CustomStepProgressBar" customModule="MyTatvaCare" customModuleProvider="target">
|
|
429
|
+
<rect key="frame" x="0.0" y="168" width="393" height="50"/>
|
|
430
|
+
<color key="backgroundColor" systemColor="systemBackgroundColor"/>
|
|
431
|
+
<constraints>
|
|
432
|
+
<constraint firstAttribute="height" constant="50" id="Jlz-l1-bM6"/>
|
|
433
|
+
</constraints>
|
|
434
|
+
<userDefinedRuntimeAttributes>
|
|
435
|
+
<userDefinedRuntimeAttribute type="number" keyPath="largeIndex2">
|
|
436
|
+
<integer key="value" value="0"/>
|
|
437
|
+
</userDefinedRuntimeAttribute>
|
|
438
|
+
<userDefinedRuntimeAttribute type="string" keyPath="largeIndex1Title" value="Provide permission"/>
|
|
439
|
+
<userDefinedRuntimeAttribute type="string" keyPath="largeIndex2Title" value="connect transmitter"/>
|
|
440
|
+
<userDefinedRuntimeAttribute type="number" keyPath="largeIndex1">
|
|
441
|
+
<integer key="value" value="1"/>
|
|
442
|
+
</userDefinedRuntimeAttribute>
|
|
443
|
+
<userDefinedRuntimeAttribute type="color" keyPath="stepColor1">
|
|
444
|
+
<color key="value" name="green"/>
|
|
445
|
+
</userDefinedRuntimeAttribute>
|
|
446
|
+
<userDefinedRuntimeAttribute type="color" keyPath="stepColor2">
|
|
447
|
+
<color key="value" name="indigo"/>
|
|
448
|
+
</userDefinedRuntimeAttribute>
|
|
449
|
+
<userDefinedRuntimeAttribute type="color" keyPath="stepColor3">
|
|
450
|
+
<color key="value" name="unselectedGray"/>
|
|
451
|
+
</userDefinedRuntimeAttribute>
|
|
452
|
+
<userDefinedRuntimeAttribute type="color" keyPath="stepColor4">
|
|
453
|
+
<color key="value" name="unselectedGray"/>
|
|
454
|
+
</userDefinedRuntimeAttribute>
|
|
455
|
+
<userDefinedRuntimeAttribute type="color" keyPath="stepColor5">
|
|
456
|
+
<color key="value" name="unselectedGray"/>
|
|
457
|
+
</userDefinedRuntimeAttribute>
|
|
458
|
+
<userDefinedRuntimeAttribute type="number" keyPath="currentIndex">
|
|
459
|
+
<integer key="value" value="1"/>
|
|
460
|
+
</userDefinedRuntimeAttribute>
|
|
461
|
+
<userDefinedRuntimeAttribute type="string" keyPath="currentTitle" value="Connect Transmitter"/>
|
|
462
|
+
<userDefinedRuntimeAttribute type="string" keyPath="nextTitle" value="Connect Sensor"/>
|
|
463
|
+
<userDefinedRuntimeAttribute type="number" keyPath="totalSteps">
|
|
464
|
+
<integer key="value" value="5"/>
|
|
465
|
+
</userDefinedRuntimeAttribute>
|
|
466
|
+
</userDefinedRuntimeAttributes>
|
|
467
|
+
</view>
|
|
468
|
+
</subviews>
|
|
469
|
+
<viewLayoutGuide key="safeArea" id="bmO-Vy-7L8"/>
|
|
470
|
+
<color key="backgroundColor" systemColor="systemBackgroundColor"/>
|
|
471
|
+
<constraints>
|
|
472
|
+
<constraint firstItem="bmO-Vy-7L8" firstAttribute="trailing" secondItem="trT-VU-g4T" secondAttribute="trailing" id="16j-RG-mPt"/>
|
|
473
|
+
<constraint firstItem="trT-VU-g4T" firstAttribute="top" secondItem="kp5-Fq-Vw1" secondAttribute="bottom" id="19l-uZ-8dS"/>
|
|
474
|
+
<constraint firstItem="AkJ-se-Ei7" firstAttribute="leading" secondItem="bmO-Vy-7L8" secondAttribute="leading" id="81V-iq-25M"/>
|
|
475
|
+
<constraint firstItem="bmO-Vy-7L8" firstAttribute="trailing" secondItem="kp5-Fq-Vw1" secondAttribute="trailing" id="Bnl-At-cwh"/>
|
|
476
|
+
<constraint firstItem="sKn-Lj-c6a" firstAttribute="leading" secondItem="bmO-Vy-7L8" secondAttribute="leading" constant="16" id="FG5-KT-Uzx"/>
|
|
477
|
+
<constraint firstItem="kp5-Fq-Vw1" firstAttribute="leading" secondItem="m1Y-dl-cWv" secondAttribute="leading" id="GeZ-Ve-mjd"/>
|
|
478
|
+
<constraint firstItem="kp5-Fq-Vw1" firstAttribute="top" secondItem="AkJ-se-Ei7" secondAttribute="bottom" id="Hu6-LK-Xtu"/>
|
|
479
|
+
<constraint firstItem="sKn-Lj-c6a" firstAttribute="top" secondItem="trT-VU-g4T" secondAttribute="bottom" id="NgU-au-UMN"/>
|
|
480
|
+
<constraint firstItem="AkJ-se-Ei7" firstAttribute="top" secondItem="bmO-Vy-7L8" secondAttribute="top" id="ORM-7V-kbr"/>
|
|
481
|
+
<constraint firstItem="bmO-Vy-7L8" firstAttribute="trailing" secondItem="AkJ-se-Ei7" secondAttribute="trailing" id="VfX-lS-f8e"/>
|
|
482
|
+
<constraint firstItem="bmO-Vy-7L8" firstAttribute="trailing" secondItem="sKn-Lj-c6a" secondAttribute="trailing" constant="16" id="WSX-cu-mUb"/>
|
|
483
|
+
<constraint firstItem="trT-VU-g4T" firstAttribute="leading" secondItem="bmO-Vy-7L8" secondAttribute="leading" id="bZN-TQ-Wvl"/>
|
|
484
|
+
<constraint firstItem="sKn-Lj-c6a" firstAttribute="bottom" secondItem="bmO-Vy-7L8" secondAttribute="bottom" id="lBZ-4r-NMn"/>
|
|
485
|
+
</constraints>
|
|
486
|
+
</view>
|
|
487
|
+
<connections>
|
|
488
|
+
<outlet property="bottomButton" destination="Bah-3w-oOu" id="L2h-nK-XZs"/>
|
|
489
|
+
<outlet property="contactSupport" destination="5mf-WM-nZT" id="ZML-3C-KNy"/>
|
|
490
|
+
<outlet property="customStepProgressHeightConstraint" destination="Jlz-l1-bM6" id="fSe-4Q-14c"/>
|
|
491
|
+
<outlet property="customTopView" destination="AkJ-se-Ei7" id="qK9-p2-zDN"/>
|
|
492
|
+
<outlet property="tableView" destination="trT-VU-g4T" id="jWp-Ma-d0J"/>
|
|
493
|
+
</connections>
|
|
494
|
+
</viewController>
|
|
495
|
+
<placeholder placeholderIdentifier="IBFirstResponder" id="6J9-X0-A4r" sceneMemberID="firstResponder"/>
|
|
496
|
+
</objects>
|
|
497
|
+
<point key="canvasLocation" x="2431.8840579710145" y="-27.455357142857142"/>
|
|
498
|
+
</scene>
|
|
499
|
+
<!--Connect To Sensor View Controller-->
|
|
500
|
+
<scene sceneID="MAG-6Y-y9l">
|
|
501
|
+
<objects>
|
|
502
|
+
<viewController storyboardIdentifier="ConnectToSensorViewController" id="taM-1n-cQ3" customClass="ConnectToSensorViewController" customModule="MyTatvaCare" customModuleProvider="target" sceneMemberID="viewController">
|
|
503
|
+
<view key="view" contentMode="scaleToFill" id="Prp-Ah-qdq">
|
|
504
|
+
<rect key="frame" x="0.0" y="0.0" width="393" height="852"/>
|
|
505
|
+
<autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
|
|
506
|
+
<subviews>
|
|
507
|
+
<view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="W82-vT-aEf" customClass="CustomTopUIView" customModule="MyTatvaCare" customModuleProvider="target">
|
|
508
|
+
<rect key="frame" x="0.0" y="118" width="393" height="50"/>
|
|
509
|
+
<color key="backgroundColor" systemColor="systemBackgroundColor"/>
|
|
510
|
+
<constraints>
|
|
511
|
+
<constraint firstAttribute="height" constant="50" id="PS5-9f-5RH"/>
|
|
512
|
+
</constraints>
|
|
513
|
+
</view>
|
|
514
|
+
<tableView clipsSubviews="YES" contentMode="scaleToFill" bounces="NO" showsHorizontalScrollIndicator="NO" showsVerticalScrollIndicator="NO" bouncesZoom="NO" dataMode="prototypes" style="plain" separatorStyle="none" allowsSelection="NO" rowHeight="-1" estimatedRowHeight="-1" sectionHeaderHeight="-1" estimatedSectionHeaderHeight="-1" sectionFooterHeight="-1" estimatedSectionFooterHeight="-1" translatesAutoresizingMaskIntoConstraints="NO" id="gMI-um-05K">
|
|
515
|
+
<rect key="frame" x="0.0" y="218" width="393" height="500"/>
|
|
516
|
+
<color key="backgroundColor" systemColor="systemBackgroundColor"/>
|
|
517
|
+
</tableView>
|
|
518
|
+
<stackView opaque="NO" contentMode="scaleToFill" distribution="fillEqually" spacing="16" translatesAutoresizingMaskIntoConstraints="NO" id="ybX-sX-E4M">
|
|
519
|
+
<rect key="frame" x="16" y="718" width="361" height="66"/>
|
|
520
|
+
<subviews>
|
|
521
|
+
<view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="U5E-OC-0rd" customClass="CustomOverlayButton" customModule="MyTatvaCare" customModuleProvider="target">
|
|
522
|
+
<rect key="frame" x="0.0" y="0.0" width="172.66666666666666" height="66"/>
|
|
523
|
+
<color key="backgroundColor" systemColor="systemBackgroundColor"/>
|
|
524
|
+
<constraints>
|
|
525
|
+
<constraint firstAttribute="height" constant="66" id="z4Q-Jm-iAk"/>
|
|
526
|
+
</constraints>
|
|
527
|
+
</view>
|
|
528
|
+
<view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="fHL-Hw-X6l" customClass="CustomOverlayButton" customModule="MyTatvaCare" customModuleProvider="target">
|
|
529
|
+
<rect key="frame" x="188.66666666666663" y="0.0" width="172.33333333333337" height="66"/>
|
|
530
|
+
<color key="backgroundColor" systemColor="systemBackgroundColor"/>
|
|
531
|
+
<constraints>
|
|
532
|
+
<constraint firstAttribute="height" constant="66" id="HjI-Xc-K1f"/>
|
|
533
|
+
</constraints>
|
|
534
|
+
</view>
|
|
535
|
+
</subviews>
|
|
536
|
+
</stackView>
|
|
537
|
+
<view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="dhf-me-AEI" customClass="CustomStepProgressBar" customModule="MyTatvaCare" customModuleProvider="target">
|
|
538
|
+
<rect key="frame" x="0.0" y="168" width="393" height="50"/>
|
|
539
|
+
<color key="backgroundColor" systemColor="systemBackgroundColor"/>
|
|
540
|
+
<constraints>
|
|
541
|
+
<constraint firstAttribute="height" constant="50" id="5zv-tQ-qal"/>
|
|
542
|
+
</constraints>
|
|
543
|
+
<userDefinedRuntimeAttributes>
|
|
544
|
+
<userDefinedRuntimeAttribute type="number" keyPath="largeIndex2">
|
|
545
|
+
<integer key="value" value="0"/>
|
|
546
|
+
</userDefinedRuntimeAttribute>
|
|
547
|
+
<userDefinedRuntimeAttribute type="string" keyPath="largeIndex1Title" value="Provide permission"/>
|
|
548
|
+
<userDefinedRuntimeAttribute type="string" keyPath="largeIndex2Title" value="connect transmitter"/>
|
|
549
|
+
<userDefinedRuntimeAttribute type="number" keyPath="largeIndex1">
|
|
550
|
+
<integer key="value" value="1"/>
|
|
551
|
+
</userDefinedRuntimeAttribute>
|
|
552
|
+
<userDefinedRuntimeAttribute type="color" keyPath="stepColor1">
|
|
553
|
+
<color key="value" name="green"/>
|
|
554
|
+
</userDefinedRuntimeAttribute>
|
|
555
|
+
<userDefinedRuntimeAttribute type="color" keyPath="stepColor2">
|
|
556
|
+
<color key="value" name="green"/>
|
|
557
|
+
</userDefinedRuntimeAttribute>
|
|
558
|
+
<userDefinedRuntimeAttribute type="color" keyPath="stepColor3">
|
|
559
|
+
<color key="value" name="indigo"/>
|
|
560
|
+
</userDefinedRuntimeAttribute>
|
|
561
|
+
<userDefinedRuntimeAttribute type="color" keyPath="stepColor4">
|
|
562
|
+
<color key="value" name="unselectedGray"/>
|
|
563
|
+
</userDefinedRuntimeAttribute>
|
|
564
|
+
<userDefinedRuntimeAttribute type="color" keyPath="stepColor5">
|
|
565
|
+
<color key="value" name="unselectedGray"/>
|
|
566
|
+
</userDefinedRuntimeAttribute>
|
|
567
|
+
<userDefinedRuntimeAttribute type="number" keyPath="currentIndex">
|
|
568
|
+
<integer key="value" value="2"/>
|
|
569
|
+
</userDefinedRuntimeAttribute>
|
|
570
|
+
<userDefinedRuntimeAttribute type="string" keyPath="currentTitle" value="Connect Sensor"/>
|
|
571
|
+
<userDefinedRuntimeAttribute type="string" keyPath="nextTitle" value="Place Sensor"/>
|
|
572
|
+
<userDefinedRuntimeAttribute type="number" keyPath="totalSteps">
|
|
573
|
+
<integer key="value" value="5"/>
|
|
574
|
+
</userDefinedRuntimeAttribute>
|
|
575
|
+
</userDefinedRuntimeAttributes>
|
|
576
|
+
</view>
|
|
577
|
+
</subviews>
|
|
578
|
+
<viewLayoutGuide key="safeArea" id="Svy-tK-Xxh"/>
|
|
579
|
+
<color key="backgroundColor" systemColor="systemBackgroundColor"/>
|
|
580
|
+
<constraints>
|
|
581
|
+
<constraint firstItem="ybX-sX-E4M" firstAttribute="top" secondItem="gMI-um-05K" secondAttribute="bottom" id="Des-Nk-hVZ"/>
|
|
582
|
+
<constraint firstItem="dhf-me-AEI" firstAttribute="top" secondItem="W82-vT-aEf" secondAttribute="bottom" id="K4B-vW-5b6"/>
|
|
583
|
+
<constraint firstItem="gMI-um-05K" firstAttribute="leading" secondItem="Svy-tK-Xxh" secondAttribute="leading" id="KQg-OH-8nu"/>
|
|
584
|
+
<constraint firstItem="W82-vT-aEf" firstAttribute="top" secondItem="Svy-tK-Xxh" secondAttribute="top" id="R0y-3n-0XV"/>
|
|
585
|
+
<constraint firstItem="ybX-sX-E4M" firstAttribute="bottom" secondItem="Svy-tK-Xxh" secondAttribute="bottom" id="RAz-Qm-CPc"/>
|
|
586
|
+
<constraint firstItem="W82-vT-aEf" firstAttribute="leading" secondItem="Svy-tK-Xxh" secondAttribute="leading" id="U2n-d6-0d7"/>
|
|
587
|
+
<constraint firstItem="Svy-tK-Xxh" firstAttribute="trailing" secondItem="W82-vT-aEf" secondAttribute="trailing" id="Vh0-ko-pBy"/>
|
|
588
|
+
<constraint firstItem="Svy-tK-Xxh" firstAttribute="trailing" secondItem="gMI-um-05K" secondAttribute="trailing" id="ZJu-Sh-Fvp"/>
|
|
589
|
+
<constraint firstItem="dhf-me-AEI" firstAttribute="leading" secondItem="Prp-Ah-qdq" secondAttribute="leading" id="Zyf-wp-2te"/>
|
|
590
|
+
<constraint firstItem="Svy-tK-Xxh" firstAttribute="trailing" secondItem="ybX-sX-E4M" secondAttribute="trailing" constant="16" id="nWh-nK-3EI"/>
|
|
591
|
+
<constraint firstItem="ybX-sX-E4M" firstAttribute="leading" secondItem="Svy-tK-Xxh" secondAttribute="leading" constant="16" id="sSy-EL-ZQV"/>
|
|
592
|
+
<constraint firstItem="Svy-tK-Xxh" firstAttribute="trailing" secondItem="dhf-me-AEI" secondAttribute="trailing" id="yGQ-oY-Nkf"/>
|
|
593
|
+
<constraint firstItem="gMI-um-05K" firstAttribute="top" secondItem="dhf-me-AEI" secondAttribute="bottom" id="zRl-Y7-gok"/>
|
|
594
|
+
</constraints>
|
|
595
|
+
</view>
|
|
596
|
+
<connections>
|
|
597
|
+
<outlet property="bottomButton" destination="fHL-Hw-X6l" id="nBa-dO-PAD"/>
|
|
598
|
+
<outlet property="contactSupport" destination="U5E-OC-0rd" id="A5V-hM-8IT"/>
|
|
599
|
+
<outlet property="customTopView" destination="W82-vT-aEf" id="crs-Jf-TM8"/>
|
|
600
|
+
<outlet property="tableView" destination="gMI-um-05K" id="GmP-RJ-oWf"/>
|
|
601
|
+
</connections>
|
|
602
|
+
</viewController>
|
|
603
|
+
<placeholder placeholderIdentifier="IBFirstResponder" id="AP6-4U-1Py" sceneMemberID="firstResponder"/>
|
|
604
|
+
</objects>
|
|
605
|
+
<point key="canvasLocation" x="3100.0000000000005" y="-27.455357142857142"/>
|
|
606
|
+
</scene>
|
|
607
|
+
<!--Navigation Controller-->
|
|
608
|
+
<scene sceneID="roc-Ll-43z">
|
|
609
|
+
<objects>
|
|
610
|
+
<navigationController automaticallyAdjustsScrollViewInsets="NO" id="cQ9-ft-YLU" sceneMemberID="viewController">
|
|
611
|
+
<toolbarItems/>
|
|
612
|
+
<navigationBar key="navigationBar" contentMode="scaleToFill" id="g1F-Kt-YV8">
|
|
613
|
+
<rect key="frame" x="0.0" y="118" width="393" height="44"/>
|
|
614
|
+
<autoresizingMask key="autoresizingMask"/>
|
|
615
|
+
</navigationBar>
|
|
616
|
+
<nil name="viewControllers"/>
|
|
617
|
+
<connections>
|
|
618
|
+
<segue destination="BYZ-38-t0r" kind="relationship" relationship="rootViewController" id="9J6-ut-giI"/>
|
|
619
|
+
</connections>
|
|
620
|
+
</navigationController>
|
|
621
|
+
<placeholder placeholderIdentifier="IBFirstResponder" id="AwW-mO-nDm" userLabel="First Responder" customClass="UIResponder" sceneMemberID="firstResponder"/>
|
|
622
|
+
</objects>
|
|
623
|
+
<point key="canvasLocation" x="131.8840579710145" y="-27.455357142857142"/>
|
|
624
|
+
</scene>
|
|
625
|
+
<!--Chat With Expert View Controller-->
|
|
626
|
+
<scene sceneID="HDF-p1-Kjg">
|
|
627
|
+
<objects>
|
|
628
|
+
<viewController storyboardIdentifier="ChatWithExpertViewController" id="nhD-er-4tn" customClass="ChatWithExpertViewController" customModule="MyTatvaCare" customModuleProvider="target" sceneMemberID="viewController">
|
|
629
|
+
<view key="view" contentMode="scaleToFill" id="GVn-Mp-ht4">
|
|
630
|
+
<rect key="frame" x="0.0" y="0.0" width="393" height="852"/>
|
|
631
|
+
<autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
|
|
632
|
+
<subviews>
|
|
633
|
+
<tableView clipsSubviews="YES" contentMode="scaleToFill" bounces="NO" showsHorizontalScrollIndicator="NO" showsVerticalScrollIndicator="NO" bouncesZoom="NO" dataMode="prototypes" style="plain" separatorStyle="none" rowHeight="-1" estimatedRowHeight="-1" sectionHeaderHeight="-1" estimatedSectionHeaderHeight="-1" sectionFooterHeight="-1" estimatedSectionFooterHeight="-1" translatesAutoresizingMaskIntoConstraints="NO" id="PkU-bi-Z7R">
|
|
634
|
+
<rect key="frame" x="0.0" y="162" width="393" height="556"/>
|
|
635
|
+
<color key="backgroundColor" systemColor="systemBackgroundColor"/>
|
|
636
|
+
</tableView>
|
|
637
|
+
<view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="pPO-wM-DEK" customClass="CustomOverlayButton" customModule="MyTatvaCare" customModuleProvider="target">
|
|
638
|
+
<rect key="frame" x="16" y="718" width="361" height="66"/>
|
|
639
|
+
<color key="backgroundColor" systemColor="systemBackgroundColor"/>
|
|
640
|
+
<constraints>
|
|
641
|
+
<constraint firstAttribute="height" constant="66" id="lrs-IF-5kz"/>
|
|
642
|
+
</constraints>
|
|
643
|
+
</view>
|
|
644
|
+
<button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="Qog-1G-Sn9">
|
|
645
|
+
<rect key="frame" x="16" y="118" width="80" height="44"/>
|
|
646
|
+
<constraints>
|
|
647
|
+
<constraint firstAttribute="width" constant="80" id="8jt-YZ-Opl"/>
|
|
648
|
+
<constraint firstAttribute="height" constant="44" id="L2k-Wc-OCX"/>
|
|
649
|
+
</constraints>
|
|
650
|
+
<inset key="imageEdgeInsets" minX="0.0" minY="0.0" maxX="2.2250738585072014e-308" maxY="0.0"/>
|
|
651
|
+
<state key="normal" title=" Back " image="ic_back">
|
|
652
|
+
<color key="titleColor" red="0.20392156862745098" green="0.25098039215686274" blue="0.32941176470588235" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
|
|
653
|
+
</state>
|
|
654
|
+
<connections>
|
|
655
|
+
<action selector="buttonBackTouchUpInside:" destination="nhD-er-4tn" eventType="touchUpInside" id="0qD-bY-6aR"/>
|
|
656
|
+
</connections>
|
|
657
|
+
</button>
|
|
658
|
+
</subviews>
|
|
659
|
+
<viewLayoutGuide key="safeArea" id="afM-8A-EpY"/>
|
|
660
|
+
<color key="backgroundColor" systemColor="systemBackgroundColor"/>
|
|
661
|
+
<constraints>
|
|
662
|
+
<constraint firstItem="Qog-1G-Sn9" firstAttribute="leading" secondItem="afM-8A-EpY" secondAttribute="leading" constant="16" id="8Bo-hc-ZdF"/>
|
|
663
|
+
<constraint firstItem="pPO-wM-DEK" firstAttribute="bottom" secondItem="afM-8A-EpY" secondAttribute="bottom" id="9uY-2B-urH"/>
|
|
664
|
+
<constraint firstItem="PkU-bi-Z7R" firstAttribute="leading" secondItem="afM-8A-EpY" secondAttribute="leading" id="Oeh-HE-b6S"/>
|
|
665
|
+
<constraint firstItem="afM-8A-EpY" firstAttribute="trailing" secondItem="pPO-wM-DEK" secondAttribute="trailing" constant="16" id="Syv-aq-wvC"/>
|
|
666
|
+
<constraint firstItem="afM-8A-EpY" firstAttribute="trailing" secondItem="PkU-bi-Z7R" secondAttribute="trailing" id="aBr-yz-nr4"/>
|
|
667
|
+
<constraint firstItem="pPO-wM-DEK" firstAttribute="leading" secondItem="afM-8A-EpY" secondAttribute="leading" constant="16" id="auo-ib-nef"/>
|
|
668
|
+
<constraint firstItem="PkU-bi-Z7R" firstAttribute="top" secondItem="Qog-1G-Sn9" secondAttribute="bottom" id="ldu-h3-MUN"/>
|
|
669
|
+
<constraint firstItem="pPO-wM-DEK" firstAttribute="top" secondItem="PkU-bi-Z7R" secondAttribute="bottom" id="mCh-3w-RLe"/>
|
|
670
|
+
<constraint firstItem="Qog-1G-Sn9" firstAttribute="top" secondItem="afM-8A-EpY" secondAttribute="top" id="nZn-VX-TFJ"/>
|
|
671
|
+
</constraints>
|
|
672
|
+
</view>
|
|
673
|
+
<connections>
|
|
674
|
+
<outlet property="bottomButton" destination="pPO-wM-DEK" id="WNW-mI-czC"/>
|
|
675
|
+
<outlet property="buttonBack" destination="Qog-1G-Sn9" id="VTA-XI-fQg"/>
|
|
676
|
+
<outlet property="tableView" destination="PkU-bi-Z7R" id="zUX-yP-9zv"/>
|
|
677
|
+
</connections>
|
|
678
|
+
</viewController>
|
|
679
|
+
<placeholder placeholderIdentifier="IBFirstResponder" id="pKk-fZ-0QQ" sceneMemberID="firstResponder"/>
|
|
680
|
+
</objects>
|
|
681
|
+
<point key="canvasLocation" x="5113.740458015267" y="-27.464788732394368"/>
|
|
682
|
+
</scene>
|
|
683
|
+
<!--Exit Journey View Controller-->
|
|
684
|
+
<scene sceneID="NJC-9e-bg4">
|
|
685
|
+
<objects>
|
|
686
|
+
<viewController storyboardIdentifier="ExitJourneyViewController" id="Loa-L5-kNN" customClass="ExitJourneyViewController" customModule="MyTatvaCare" customModuleProvider="target" sceneMemberID="viewController">
|
|
687
|
+
<view key="view" contentMode="scaleToFill" id="iWk-At-ixR">
|
|
688
|
+
<rect key="frame" x="0.0" y="0.0" width="393" height="852"/>
|
|
689
|
+
<autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
|
|
690
|
+
<subviews>
|
|
691
|
+
<view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="fTl-aF-Jas" customClass="CustomView" customModule="MyTatvaCare" customModuleProvider="target">
|
|
692
|
+
<rect key="frame" x="16" y="347.66666666666669" width="361" height="80"/>
|
|
693
|
+
<color key="backgroundColor" systemColor="systemBackgroundColor"/>
|
|
694
|
+
<constraints>
|
|
695
|
+
<constraint firstAttribute="height" constant="80" id="Zrr-vH-hGz"/>
|
|
696
|
+
</constraints>
|
|
697
|
+
<userDefinedRuntimeAttributes>
|
|
698
|
+
<userDefinedRuntimeAttribute type="number" keyPath="cornerRadius">
|
|
699
|
+
<real key="value" value="16"/>
|
|
700
|
+
</userDefinedRuntimeAttribute>
|
|
701
|
+
</userDefinedRuntimeAttributes>
|
|
702
|
+
</view>
|
|
703
|
+
<view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="iv6-8Y-xdi">
|
|
704
|
+
<rect key="frame" x="16" y="367.66666666666674" width="361" height="416.33333333333326"/>
|
|
705
|
+
<subviews>
|
|
706
|
+
<view clipsSubviews="YES" contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="Khd-dl-lEo" customClass="CustomView" customModule="MyTatvaCare" customModuleProvider="target">
|
|
707
|
+
<rect key="frame" x="16" y="133.66666666666663" width="329" height="149.66666666666663"/>
|
|
708
|
+
<subviews>
|
|
709
|
+
<view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="Xvb-0o-mhH">
|
|
710
|
+
<rect key="frame" x="0.0" y="0.0" width="329" height="58"/>
|
|
711
|
+
<subviews>
|
|
712
|
+
<label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Important Note" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="Rjj-Gh-uNU">
|
|
713
|
+
<rect key="frame" x="16" y="19.000000000000057" width="297" height="20.333333333333329"/>
|
|
714
|
+
<fontDescription key="fontDescription" name=".AppleSystemUIFont" family=".AppleSystemUIFont" pointSize="17"/>
|
|
715
|
+
<nil key="textColor"/>
|
|
716
|
+
<nil key="highlightedColor"/>
|
|
717
|
+
</label>
|
|
718
|
+
</subviews>
|
|
719
|
+
<color key="backgroundColor" red="0.95294117649999999" green="0.81960784310000001" blue="0.3803921569" alpha="1" colorSpace="calibratedRGB"/>
|
|
720
|
+
<constraints>
|
|
721
|
+
<constraint firstAttribute="height" constant="58" id="CP4-V1-48H"/>
|
|
722
|
+
<constraint firstAttribute="trailing" secondItem="Rjj-Gh-uNU" secondAttribute="trailing" constant="16" id="Hdc-HT-1Xq"/>
|
|
723
|
+
<constraint firstItem="Rjj-Gh-uNU" firstAttribute="leading" secondItem="Xvb-0o-mhH" secondAttribute="leading" constant="16" id="IKF-3e-udr"/>
|
|
724
|
+
<constraint firstItem="Rjj-Gh-uNU" firstAttribute="centerY" secondItem="Xvb-0o-mhH" secondAttribute="centerY" id="U5l-MG-fdf"/>
|
|
725
|
+
</constraints>
|
|
726
|
+
</view>
|
|
727
|
+
<stackView opaque="NO" contentMode="scaleToFill" spacing="12" translatesAutoresizingMaskIntoConstraints="NO" id="yVH-6s-MTN">
|
|
728
|
+
<rect key="frame" x="16" y="74.000000000000057" width="297" height="59.666666666666657"/>
|
|
729
|
+
<subviews>
|
|
730
|
+
<label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="If you have already put on the sensor then it is recommended to complete your journey" textAlignment="natural" lineBreakMode="tailTruncation" numberOfLines="0" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="xrZ-Sw-wjn">
|
|
731
|
+
<rect key="frame" x="0.0" y="0.0" width="297" height="59.666666666666664"/>
|
|
732
|
+
<fontDescription key="fontDescription" name="HelveticaNeue" family="Helvetica Neue" pointSize="17"/>
|
|
733
|
+
<nil key="textColor"/>
|
|
734
|
+
<nil key="highlightedColor"/>
|
|
735
|
+
</label>
|
|
736
|
+
</subviews>
|
|
737
|
+
</stackView>
|
|
738
|
+
</subviews>
|
|
739
|
+
<color key="backgroundColor" red="0.90588235289999997" green="0.75686274509999996" blue="0.2666666667" alpha="1" colorSpace="calibratedRGB"/>
|
|
740
|
+
<constraints>
|
|
741
|
+
<constraint firstAttribute="trailing" secondItem="yVH-6s-MTN" secondAttribute="trailing" constant="16" id="5PM-oy-5sH"/>
|
|
742
|
+
<constraint firstItem="Xvb-0o-mhH" firstAttribute="top" secondItem="Khd-dl-lEo" secondAttribute="top" id="92H-Ct-nOr"/>
|
|
743
|
+
<constraint firstAttribute="bottom" secondItem="yVH-6s-MTN" secondAttribute="bottom" constant="16" id="92Z-iP-f83"/>
|
|
744
|
+
<constraint firstItem="Xvb-0o-mhH" firstAttribute="leading" secondItem="Khd-dl-lEo" secondAttribute="leading" id="R4g-Wm-MnI"/>
|
|
745
|
+
<constraint firstAttribute="trailing" secondItem="Xvb-0o-mhH" secondAttribute="trailing" id="RKD-ae-P1E"/>
|
|
746
|
+
<constraint firstItem="yVH-6s-MTN" firstAttribute="leading" secondItem="Khd-dl-lEo" secondAttribute="leading" constant="16" id="wQ3-IZ-MHd"/>
|
|
747
|
+
<constraint firstItem="yVH-6s-MTN" firstAttribute="top" secondItem="Xvb-0o-mhH" secondAttribute="bottom" constant="16" id="xTN-Aa-AsQ"/>
|
|
748
|
+
</constraints>
|
|
749
|
+
<userDefinedRuntimeAttributes>
|
|
750
|
+
<userDefinedRuntimeAttribute type="number" keyPath="cornerRadius">
|
|
751
|
+
<real key="value" value="12"/>
|
|
752
|
+
</userDefinedRuntimeAttribute>
|
|
753
|
+
</userDefinedRuntimeAttributes>
|
|
754
|
+
</view>
|
|
755
|
+
<stackView opaque="NO" contentMode="scaleToFill" distribution="fillEqually" spacing="16" translatesAutoresizingMaskIntoConstraints="NO" id="YR2-Bq-fKR">
|
|
756
|
+
<rect key="frame" x="16" y="314.33333333333331" width="329" height="66"/>
|
|
757
|
+
<subviews>
|
|
758
|
+
<view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="OOp-ax-q9c" customClass="CustomOverlayButton" customModule="MyTatvaCare" customModuleProvider="target">
|
|
759
|
+
<rect key="frame" x="0.0" y="0.0" width="156.66666666666666" height="66"/>
|
|
760
|
+
<color key="backgroundColor" systemColor="systemBackgroundColor"/>
|
|
761
|
+
<constraints>
|
|
762
|
+
<constraint firstAttribute="height" constant="66" id="2Kv-jY-mDZ"/>
|
|
763
|
+
</constraints>
|
|
764
|
+
</view>
|
|
765
|
+
<view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="QQH-XM-L0B" customClass="CustomOverlayButton" customModule="MyTatvaCare" customModuleProvider="target">
|
|
766
|
+
<rect key="frame" x="172.66666666666663" y="0.0" width="156.33333333333337" height="66"/>
|
|
767
|
+
<color key="backgroundColor" systemColor="systemBackgroundColor"/>
|
|
768
|
+
<constraints>
|
|
769
|
+
<constraint firstAttribute="height" constant="66" id="MW1-86-Hqx"/>
|
|
770
|
+
</constraints>
|
|
771
|
+
</view>
|
|
772
|
+
</subviews>
|
|
773
|
+
</stackView>
|
|
774
|
+
<label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" textAlignment="natural" lineBreakMode="tailTruncation" numberOfLines="0" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="0Rf-eG-F75">
|
|
775
|
+
<rect key="frame" x="16" y="28.333333333333307" width="329" height="81.333333333333314"/>
|
|
776
|
+
<string key="text">Are you sure you want to exit the connection journey? This action cannot be reversed and you will have to restart the connection journey.</string>
|
|
777
|
+
<fontDescription key="fontDescription" type="system" pointSize="17"/>
|
|
778
|
+
<nil key="textColor"/>
|
|
779
|
+
<nil key="highlightedColor"/>
|
|
780
|
+
</label>
|
|
781
|
+
<label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Exit Journey" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="Q0o-9U-Ehf">
|
|
782
|
+
<rect key="frame" x="16" y="0.0" width="329" height="20.333333333333332"/>
|
|
783
|
+
<fontDescription key="fontDescription" type="system" pointSize="17"/>
|
|
784
|
+
<nil key="textColor"/>
|
|
785
|
+
<nil key="highlightedColor"/>
|
|
786
|
+
</label>
|
|
787
|
+
</subviews>
|
|
788
|
+
<color key="backgroundColor" systemColor="systemBackgroundColor"/>
|
|
789
|
+
<constraints>
|
|
790
|
+
<constraint firstItem="Q0o-9U-Ehf" firstAttribute="leading" secondItem="iv6-8Y-xdi" secondAttribute="leading" constant="16" id="1mt-Fx-7zh"/>
|
|
791
|
+
<constraint firstItem="YR2-Bq-fKR" firstAttribute="leading" secondItem="iv6-8Y-xdi" secondAttribute="leading" constant="16" id="1vM-SN-EUW"/>
|
|
792
|
+
<constraint firstAttribute="bottom" secondItem="YR2-Bq-fKR" secondAttribute="bottom" constant="36" id="CoA-he-FfE"/>
|
|
793
|
+
<constraint firstAttribute="trailing" secondItem="Q0o-9U-Ehf" secondAttribute="trailing" constant="16" id="Hh7-FY-cmp"/>
|
|
794
|
+
<constraint firstAttribute="trailing" secondItem="YR2-Bq-fKR" secondAttribute="trailing" constant="16" id="Lco-l1-ylZ"/>
|
|
795
|
+
<constraint firstAttribute="trailing" secondItem="0Rf-eG-F75" secondAttribute="trailing" constant="16" id="P7Q-YQ-8Hk"/>
|
|
796
|
+
<constraint firstItem="Khd-dl-lEo" firstAttribute="leading" secondItem="iv6-8Y-xdi" secondAttribute="leading" constant="16" id="WNc-ce-5dF"/>
|
|
797
|
+
<constraint firstItem="Q0o-9U-Ehf" firstAttribute="top" secondItem="iv6-8Y-xdi" secondAttribute="top" id="ZRx-B0-T9e"/>
|
|
798
|
+
<constraint firstItem="YR2-Bq-fKR" firstAttribute="top" secondItem="Khd-dl-lEo" secondAttribute="bottom" constant="31" id="ZU8-ln-HMw"/>
|
|
799
|
+
<constraint firstItem="Khd-dl-lEo" firstAttribute="top" secondItem="0Rf-eG-F75" secondAttribute="bottom" constant="24" id="bwV-yj-V3N"/>
|
|
800
|
+
<constraint firstAttribute="trailing" secondItem="Khd-dl-lEo" secondAttribute="trailing" constant="16" id="jM7-jC-lhg"/>
|
|
801
|
+
<constraint firstItem="0Rf-eG-F75" firstAttribute="top" secondItem="Q0o-9U-Ehf" secondAttribute="bottom" constant="8" id="nfZ-Sg-mg6"/>
|
|
802
|
+
<constraint firstItem="0Rf-eG-F75" firstAttribute="leading" secondItem="iv6-8Y-xdi" secondAttribute="leading" constant="16" id="uew-LP-Lqb"/>
|
|
803
|
+
</constraints>
|
|
804
|
+
</view>
|
|
805
|
+
<button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="KNt-W5-PCU">
|
|
806
|
+
<rect key="frame" x="329" y="362" width="32" height="32"/>
|
|
807
|
+
<inset key="imageEdgeInsets" minX="0.0" minY="0.0" maxX="2.2250738585072014e-308" maxY="0.0"/>
|
|
808
|
+
<state key="normal" image="ic_close_popup"/>
|
|
809
|
+
<connections>
|
|
810
|
+
<action selector="buttonCloseTouchUpInside:" destination="Loa-L5-kNN" eventType="touchUpInside" id="fpb-FY-Y69"/>
|
|
811
|
+
</connections>
|
|
812
|
+
</button>
|
|
813
|
+
</subviews>
|
|
814
|
+
<viewLayoutGuide key="safeArea" id="fqC-eX-ZRb"/>
|
|
815
|
+
<color key="backgroundColor" white="0.0" alpha="0.70432079081632648" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
|
|
816
|
+
<constraints>
|
|
817
|
+
<constraint firstItem="fTl-aF-Jas" firstAttribute="leading" secondItem="fqC-eX-ZRb" secondAttribute="leading" constant="16" id="Mg3-FO-ZWL"/>
|
|
818
|
+
<constraint firstItem="fqC-eX-ZRb" firstAttribute="trailing" secondItem="iv6-8Y-xdi" secondAttribute="trailing" constant="16" id="OFm-eg-09a"/>
|
|
819
|
+
<constraint firstItem="fqC-eX-ZRb" firstAttribute="trailing" secondItem="KNt-W5-PCU" secondAttribute="trailing" constant="32" id="OPr-kl-sw9"/>
|
|
820
|
+
<constraint firstItem="iv6-8Y-xdi" firstAttribute="leading" secondItem="fqC-eX-ZRb" secondAttribute="leading" constant="16" id="SaL-ti-dPA"/>
|
|
821
|
+
<constraint firstItem="fTl-aF-Jas" firstAttribute="top" secondItem="iv6-8Y-xdi" secondAttribute="top" constant="-20" id="eOj-vd-i5o"/>
|
|
822
|
+
<constraint firstItem="KNt-W5-PCU" firstAttribute="centerY" secondItem="Q0o-9U-Ehf" secondAttribute="centerY" id="nD8-Gp-VKJ"/>
|
|
823
|
+
<constraint firstItem="fqC-eX-ZRb" firstAttribute="bottom" secondItem="iv6-8Y-xdi" secondAttribute="bottom" id="nun-YG-g9r"/>
|
|
824
|
+
<constraint firstItem="fqC-eX-ZRb" firstAttribute="trailing" secondItem="fTl-aF-Jas" secondAttribute="trailing" constant="16" id="ydJ-o6-aMl"/>
|
|
825
|
+
</constraints>
|
|
826
|
+
</view>
|
|
827
|
+
<connections>
|
|
828
|
+
<outlet property="buttonCancel" destination="QQH-XM-L0B" id="BM7-Kh-5Cc"/>
|
|
829
|
+
<outlet property="buttonExit" destination="OOp-ax-q9c" id="SQz-IJ-DZq"/>
|
|
830
|
+
<outlet property="labelDesc" destination="0Rf-eG-F75" id="IvG-hm-H62"/>
|
|
831
|
+
<outlet property="labelImportantNote" destination="Rjj-Gh-uNU" id="1Rm-LZ-eIw"/>
|
|
832
|
+
<outlet property="labelImportantNoteDesc" destination="xrZ-Sw-wjn" id="hWx-bS-S7X"/>
|
|
833
|
+
<outlet property="labelTitle" destination="Q0o-9U-Ehf" id="Ydq-y9-p3l"/>
|
|
834
|
+
</connections>
|
|
835
|
+
</viewController>
|
|
836
|
+
<placeholder placeholderIdentifier="IBFirstResponder" id="gpo-7g-sIt" userLabel="First Responder" customClass="UIResponder" sceneMemberID="firstResponder"/>
|
|
837
|
+
</objects>
|
|
838
|
+
<point key="canvasLocation" x="5817.5572519083971" y="-27.464788732394368"/>
|
|
839
|
+
</scene>
|
|
840
|
+
</scenes>
|
|
841
|
+
<resources>
|
|
842
|
+
<image name="ic_back" width="22" height="22"/>
|
|
843
|
+
<image name="ic_close_popup" width="32" height="32"/>
|
|
844
|
+
<image name="mandala" width="1560" height="776"/>
|
|
845
|
+
<namedColor name="green">
|
|
846
|
+
<color red="0.16078431372549021" green="0.61568627450980395" blue="0.41960784313725491" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
|
|
847
|
+
</namedColor>
|
|
848
|
+
<namedColor name="indigo">
|
|
849
|
+
<color red="0.17647058823529413" green="0.19607843137254902" blue="0.50980392156862742" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
|
|
850
|
+
</namedColor>
|
|
851
|
+
<namedColor name="unselectedGray">
|
|
852
|
+
<color red="0.89411764705882357" green="0.90588235294117647" blue="0.92549019607843142" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
|
|
853
|
+
</namedColor>
|
|
854
|
+
<systemColor name="systemBackgroundColor">
|
|
855
|
+
<color white="1" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
|
|
856
|
+
</systemColor>
|
|
857
|
+
</resources>
|
|
858
|
+
</document>
|