()
| 120 | } = preferences; |
| 121 | |
| 122 | const _handleToggleRTL = () => { |
| 123 | if (expoGoExecution) { |
| 124 | setShowRTLDialog(true); |
| 125 | return; |
| 126 | } |
| 127 | |
| 128 | toggleRTL(); |
| 129 | I18nManager.forceRTL(!isRTL); |
| 130 | if (isWeb) { |
| 131 | Updates.reloadAsync(); |
| 132 | } |
| 133 | }; |
| 134 | |
| 135 | const _handleDismissRTLDialog = () => { |
| 136 | setShowRTLDialog(false); |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…