···117118 private fun handleImageIntents(
119 uris: List<Uri>,
120- text: String?
121 ) {
122 var allParams = ""
123···145146 private fun handleVideoIntents(
147 uris: List<Uri>,
148- text: String?
149 ) {
150 val uri = uris[0]
151 // If there is no extension for the file, substringAfterLast returns the original string - not
···117118 private fun handleImageIntents(
119 uris: List<Uri>,
120+ text: String?,
121 ) {
122 var allParams = ""
123···145146 private fun handleVideoIntents(
147 uris: List<Uri>,
148+ text: String?,
149 ) {
150 val uri = uris[0]
151 // If there is no extension for the file, substringAfterLast returns the original string - not
···34import React, {useEffect, useState} from 'react'
5import {GestureHandlerRootView} from 'react-native-gesture-handler'
06import {
7 initialWindowMetrics,
8 SafeAreaProvider,
···14import {useLingui} from '@lingui/react'
15import * as Sentry from '@sentry/react-native'
1617-import {KeyboardControllerProvider} from '#/lib/hooks/useEnableKeyboardController'
18import {Provider as HideBottomBarBorderProvider} from '#/lib/hooks/useHideBottomBarBorder'
19import {QueryProvider} from '#/lib/react-query'
20import {s} from '#/lib/styles'
···34import React, {useEffect, useState} from 'react'
5import {GestureHandlerRootView} from 'react-native-gesture-handler'
6+import {KeyboardProvider as KeyboardControllerProvider} from 'react-native-keyboard-controller'
7import {
8 initialWindowMetrics,
9 SafeAreaProvider,
···15import {useLingui} from '@lingui/react'
16import * as Sentry from '@sentry/react-native'
17018import {Provider as HideBottomBarBorderProvider} from '#/lib/hooks/useHideBottomBarBorder'
19import {QueryProvider} from '#/lib/react-query'
20import {s} from '#/lib/styles'