(title: string, message: string)
| 48 | }; |
| 49 | |
| 50 | export const feedbackAlertDialog = (title: string, message: string): void => { |
| 51 | if (isWeb() && typeof RN_GLOBAL_OBJ.alert !== 'undefined') { |
| 52 | RN_GLOBAL_OBJ.alert(`${title}\n${message}`); |
| 53 | } else { |
| 54 | Alert.alert(title, message); |
| 55 | } |
| 56 | }; |
no test coverage detected