diff --git a/apps/expo/modules/check-ios-certificate/ios/CheckIosCertificate.podspec b/apps/expo/modules/check-ios-certificate/ios/CheckIosCertificate.podspec index 5a962ab..597e515 100644 --- a/apps/expo/modules/check-ios-certificate/ios/CheckIosCertificate.podspec +++ b/apps/expo/modules/check-ios-certificate/ios/CheckIosCertificate.podspec @@ -1,9 +1,9 @@ Pod::Spec.new do |s| s.name = 'CheckIosCertificate' s.version = '1.0.0' - s.summary = 'A sample project summary' - s.description = 'A sample project description' - s.author = '' + s.summary = 'Check if iOS certificate is Development or Production.' + s.description = 'Check if iOS certificate is Development or Production.' + s.author = 'castdrian' s.homepage = 'https://docs.expo.dev/modules/' s.platforms = { :ios => '13.4', :tvos => '13.4' } s.source = { git: '' } diff --git a/apps/expo/src/app/(tabs)/search.tsx b/apps/expo/src/app/(tabs)/search.tsx index 2dcb2bb..e219cd1 100644 --- a/apps/expo/src/app/(tabs)/search.tsx +++ b/apps/expo/src/app/(tabs)/search.tsx @@ -127,7 +127,7 @@ export default function SearchScreen() { (null); useEffect(() => { @@ -24,26 +22,6 @@ export function SearchBar({ } }, [pageIsFocused]); - useEffect(() => { - const keyboardDidShowListener = Keyboard.addListener( - "keyboardDidShow", - () => { - setIsFocused(true); - }, - ); - const keyboardDidHideListener = Keyboard.addListener( - "keyboardDidHide", - () => { - setIsFocused(false); - }, - ); - - return () => { - keyboardDidShowListener.remove(); - keyboardDidHideListener.remove(); - }; - }, []); - const handleChange = (text: string) => { setKeyword(text); onSearchChange(text); @@ -55,7 +33,7 @@ export function SearchBar({ alignItems="center" borderRadius={999} borderWidth={1} - backgroundColor={isFocused ? theme.searchFocused : theme.searchBackground} + backgroundColor={theme.searchBackground} > @@ -67,9 +45,7 @@ export function SearchBar({ ref={inputRef} placeholder="What are you looking for?" width="75%" - backgroundColor={ - isFocused ? theme.searchFocused : theme.searchBackground - } + backgroundColor={theme.searchBackground} /> );