Horst Leung

Results 24 comments of Horst Leung

In iOS, it won't stop when user stop. You need to add a timeout function to stop it.

Something like this, unknown side effect to Android. ``` let timeout; const InitDelay = 3000; const ContinueDelay = 150; const handleTimeout = ()=> { Voice.stop(); } Voice.start(locale).then(()=>{ timeout = setTimeout(handleTimeout,...

@lfoliveir4 My problem is that iOS won't end the speech when user stop speaking but android does. So, I set timeouts for that. Not related to simulator / real device.

``` import React from 'react'; import { LineChart, BarChart, Grid, YAxis, XAxis } from 'react-native-svg-charts'; import * as scale from 'd3-scale'; import * as shape from 'd3-shape'; import { Circle,...

> What would be the difference between saving with `setGenericPassword` and `setInternetCredentials `? almost the same. the `internetCredentials` has more attributes to distinguish the remote access. (i.e. The generic one...

> @fattomhk So, if my app use credentials that are also used for a web portal, I need to use `setInternetCredentials` and add the `server` attribute (server will be web...

> @fattomhk If I use `setInternetCredentials` on iOS and in the key `server` I use my domain name (etc. `www.exampledomainservervalue.com`), those credentials will appear on my phone keychain (Settings >...

> But to those functions are only available on iOS, so for Android use “setInternetCredentials”? AFAIK, this lib cannot share pwd to another app (correct me if it support) or...

> smartlock-password is an android tech? yes, android only. A Google play service tech, required Android 4.4+ with play service 15+

If you are facing : it would snap to 0 slide when you are trying to snap to position x simply add prop: `getItemLayout` to calculate offset. example: ``` getItemLayout={(data,...