Ravis Farooq
Ravis Farooq
Yes, My problem was with state, Actually it was re rendering my component again and again. It was logical error which i debug later and resolved it. On Tue, Sep...
import React from 'react'; import {Rating} from 'react-native-ratings'; import {useTheme} from ***@***.***/restyle'; import {Theme} from '../config/theme'; type RatingCompProps = { rating: number; }; const RatingComp: React.FC = ({rating}) => {...
Any example How can we implement onChangeSearchInputText?
Fixed this issue by adding: ```javascript InAppBrowser.open(url, { // Android Properties showInRecents: true, ........ }) ```
> If you guys still have an issue concerning the file path and the pdf not getting created in the appropriate folder. I have found a work around. > >...
By adding these two lines in **build.gradle** fixed the problem for me ``` apply from: file("../../node_modules/@react-native-community/cli-platform-android/native_modules.gradle"); applyNativeModulesAppBuildGradle(project) apply from: "../../node_modules/react-native-vector-icons/fonts.gradle" ```
> Similar error here, but code -10 `RNGoogleSignInError: Unknown error when signing in., Error Domain=org.openid.appauth.oauth_token Code=-10 "invalid_grant: Bad Request" UserInfo={OIDOAuthErrorResponseErrorKey={ error = "invalid_grant"; "error_description" = "Bad Request"; }` Did you...
Add scrollEnabled={hide || query === ''} also you need to wrap your Autocomplete component with relative position view with height say e.g., 100 then the component beneath that should be...
I also ran into another similar issue. I was using Animated.View from react-native-reanimated, and my Raw Bottom Sheet wasn’t working properly — the gestures and animations were buggy or didn’t...