skip to Main Content

How to download pdf in android through react native using web view package?

here you can see the web view component. When the page load clicking on href tag file needs to download in android <WebView ref={webViewRef} style={styles.webv} source={{ uri: {{Domain_URL}}, }} onMessage={onWebViewMessage} onError={onWebViewError} onLoadStart={onWebViewLoadStart} onLoad={onWebViewLoadEnd} javaScriptEnabled domStorageEnabled setBuiltInZoomControls={false} />

VIEW QUESTION

How can i get Number in onChangeText in React Native

I have created a userInput in React Native const [first_name, setFirstName] = useState(""); (<View style={styles.InputContainer}> <Text>Fisrt Name</Text> <TextInput value={first_name} onChangeText={(text) => setFirstName(text)} placeholder="John" style={styles.textInput} /> </View>;) and first_name is a string and I have another field for which I want…

VIEW QUESTION
Back To Top
Search