Amir Hossein Shekari

Results 32 comments of Amir Hossein Shekari

related to https://github.com/react-navigation/react-navigation/issues/11030

> I had the same problem today, and managed to fix it like this : > > ``` > import { > useWindowDimensions, > } from 'react-native'; > > const...

> > It provides terminal command specific for terminal proxy. You can copy it form the V2rayU menu. > > could you give more detail on how to copy from...

@z1haze Thanks a bunch you don't mind if I create a PR using this fix?

> > Platform.OS === 'ios' ? ( > > `{notificationContent}` > > wonder if there is a downside of doing this? There was a downside, the GestureHandler stopped working So,...

I believe this is happening because you are trying to change the camera (set or animate) while the map is not rendered I changed my function only to run after...

one simple solution would be to include the prefix here as well https://github.com/ljharb/qs/blob/981ce09d9cfe703db6bebdd87690878e1291c18a/lib/stringify.js#L123-L129 to this: ```js if (isNonNullishPrimitive(obj) || utils.isBuffer(obj)) { if (encoder) { var keyValue = encodeValuesOnly ? prefix...

@ljharb sure I am using a private api that return me a "next token" on paginated results. This api encode this value, and when I send it through query params...

Definitely first request will return this payload: ``` "pagedData": { "nextToken": "%7b%22pk%22%3a%7b%22B%22%3anull%2c%22BOOL%22%3afalse%2c%22IsBOOLSet%22%3afalse%2c%22BS%22%3a%5b%5d%2c%22L%22%3a%5b%5d%2c%22IsLSet%22%3afalse%2c%22M%22%3a%7b%7d%2c%22IsMSet%22%3afalse%2c%22N%22%3anull%2c%22NS%22%3a%5b%5d%2c%22NULL%22%3afalse%2c%22S%22%3a%22messages%23b49dbe1eb0af4de89879bbdb553f825d%22%2c%22SS%22%3a%5b%5d%7d%2c%22sk%22%3a%7b%22B%22%3anull%2c%22BOOL%22%3afalse%2c%22IsBOOLSet%22%3afalse%2c%22BS%22%3a%5b%5d%2c%22L%22%3a%5b%5d%2c%22IsLSet%22%3afalse%2c%22M%22%3a%7b%7d%2c%22IsMSet%22%3afalse%2c%22N%22%3anull%2c%22NS%22%3a%5b%5d%2c%22NULL%22%3afalse%2c%22S%22%3a%221706985547187%22%2c%22SS%22%3a%5b%5d%7d%7d", } ``` and I have to send it as it is, which means a request like this ```...

That was my first solution @ljharb, and it was working perfectly But it was only going to solve this specific use case. the reason I opened this issue was to...