Thomas Hagström
Thomas Hagström
We ran in to this exact issue and have no resolution. Will have to move away from AdvancedTimer if it can't be resolved. Tested on several iOS devices, running >=...
Like a miracle this > Since the react-renderer is flexible enough I think we can have a package that just exports a renderer option to add the `rich-text-react-renderer` > >...
Are you blocked again? Because in 2022 Snack still doesn't seem to use TypeScript >= 4
Same thing with `RSA.verify64WithAlgorithm` ```javascript const algorithm = RSA.SHA256withRSA; const signature = response.data?.signature; const publicKey = await rsaManager.WriteKeyChainPair(); console.log('>> verify64WithAlgorithm: ' + 'totally BOGUS??'); const verified = await RSA.verify64WithAlgorithm( signature,...
Now we're using TypeScript, if that matters. The above configuration, as suggested, does work. But also yields warning: > ts-jest][DEPRECATED] - replace any occurrences of "ts-jest/dist/preprocessor.js" or "/node_modules/ts-jest/preprocessor.js" in the...
iOS real device, still doesn't work. react native 0.64.1, Unity 2021.1.7f1
This setup works, I use it all the time for my repos @ayush-seth https://github.com/thomashagstrom/npm-github-react-native
What's the status of this? We intend to go to Production, but the customer uses Safari
In lack of TS support (which it really should have!), what u need is a proper definition ```typescript // types/react-reveal/index.d.ts /// /** * @typedef RevealProps * * https://www.react-reveal.com/docs/props/ */ interface...
Really easy to add types too. Just extend FlatListProps. Here's a working definition: **types/reactnative-swipeable-list/index.d.ts** ```typescript /// /// /// declare module 'react-native-swipeable-list' { import React from 'react'; import {FlatListProps} from 'react-native';...