Jan Hrdý

Results 8 comments of Jan Hrdý

Ok, I would recomend to do something like this: ``` { ... this.props.navigation.setParams({ refresh: true }); } /> ``` tl;dr: It doesn't seem to have a big difference, if you...

The fact is, that package: **@react-native-community/picker** is deprecated ❌ My solution was adding **react-native-picker/picker** package to the project ✔

You can make testing on your own. This kind of setting of package.json works for me fine. ``` { ... "devDependencies": { "@babel/core": "^7.2.2", "@babel/plugin-transform-react-jsx": "^7.3.0", "@babel/preset-react": "^7.0.0", "babel-jest": "^24.8.0",...

> You used keyboardavoidingview? Nope. I'd try it tomorrow.

Our usage is as follows: ```typescript // Importing necessary libraries and utilities import {configureStore, createSlice, combineReducers, Reducer, AnyAction} from '@reduxjs/toolkit'; import {persistReducer} from 'redux-persist'; import {Storage} from './storage'; // ======...

This solution meets my needs. Just make sure not to use a dynamic `imageIndex`. ``` import React from 'react'; import {Text, StyleSheet} from 'react-native'; import ImageView from 'react-native-image-viewing'; /** *...

Hey there! I see you're having trouble with screen orientation in your React Native app. It's a common issue, but fortunately, there are several ways to tackle it. Let's break...

Creating our custom handler proved to be the optimal solution for our needs. ``` class UniqueSeparatorParamHandler{ private separator = '###UNIQUE_SEPARATOR###'; encodeString(value: string): string { return value?.replaceAll('(', this.separator); } decodeString(value: string):...