From bc3487eac1f623c55658e57223c990414f30cba0 Mon Sep 17 00:00:00 2001 From: Akshay Nair Date: Sat, 5 Oct 2024 22:59:16 +0530 Subject: Fix issue with touchables and keyboard --- src/components/AppMenu.tsx | 25 ++++++++----------------- 1 file changed, 8 insertions(+), 17 deletions(-) (limited to 'src/components') diff --git a/src/components/AppMenu.tsx b/src/components/AppMenu.tsx index ebc6dae..bd6632f 100644 --- a/src/components/AppMenu.tsx +++ b/src/components/AppMenu.tsx @@ -1,17 +1,11 @@ -import { - Text, - View, - Modal, - TouchableOpacity, - Pressable, - TouchableNativeFeedback, -} from 'react-native'; +import {Text, View, Modal, TouchableOpacity, Pressable} from 'react-native'; import {AppDetail} from 'react-native-launcher-kit/typescript/Interfaces/InstalledApps'; import {useFavorites} from '../hooks/useFavorites'; import React, {useState} from 'react'; // @ts-expect-error No declaration file import IntentLauncher from '@angelkrak/react-native-intent-launcher'; import {useStableCallback} from '../hooks/useStableCallback'; +import {TouchableNativeFeedback} from 'react-native-gesture-handler'; export const AppMenu: React.FC> = ({ app, @@ -63,19 +57,16 @@ export const AppMenu: React.FC> = ({ return ( <> - + {children} - + @@ -83,18 +74,18 @@ export const AppMenu: React.FC> = ({ {menuItems.map((menuItem) => ( - {menuItem.label} - + ))} - + ); -- cgit v1.3.1