davidgvf_

Results 6 issues of davidgvf_

### Description When I navigate to a new screen in the stack, it sets an opacity color on this screen until it gets focus for example with an input ![image](https://github.com/software-mansion/react-native-screens/assets/62423420/1dead9ae-de67-4639-886e-31dd4401eff3)...

Platform: Android
Repro provided

When you swipe to make the signature, it only draws a dot RN version 0.76.1 react-native-signature-canvas version 4.7.2 ``` const SharedSignatureCanvas = (props: SharedSignatureCanvasProps) => { const ref = useRef(null);...

My component: ` ``` interface SharedPDFViewerProps { pdfUrl: string; customFileName?: string; onDownloadClick?: () => void; } const SharedPDFViewer: React.FC = ({ pdfUrl, customFileName = 'document.pdf', onDownloadClick }) => { const...

No compatible with RN-0.77 on android: ``` > Task :react-native-pdf:compileReleaseJavaWithJavac FAILED /Volumes/WD_BLACK_1TB/WWW/bildy-app/node_modules/react-native-pdf/android/src/paper/java/com/facebook/react/viewmanagers/RNPDFPdfViewManagerDelegate.java:16: error: cannot find symbol import com.facebook.react.uimanager.BaseViewManagerInterface; ^ symbol: class BaseViewManagerInterface location: package com.facebook.react.uimanager /Volumes/WD_BLACK_1TB/WWW/bildy-app/node_modules/react-native-pdf/android/src/paper/java/com/facebook/react/viewmanagers/RNPDFPdfViewManagerDelegate.java:18: error: cannot find symbol...

I’m passing an initial value (defaultValue) to a component that uses AutocompleteDropdown from react-native-autocomplete-dropdown. The defaultValue is received from the props and should be displayed in the input when the...