16.2%
38.4%
2.2%
37.8%
-11.6%
37.5%
97.4%
9.3%
-11.4%
100%
14.1%
100%
100%
33%
14.2%
-48.2%
-46.7%
-11.6%
-82.9%
-84.4%
hi guys, i have a question about user data collection
i recently got a new assignment from my Intern Team Management to checkout Face ID/Recognition or Biometric Authentication. But he require the project to save and send those facial, image data to the backend.
So my question is: Does Google/Apple allow dev to collect and store user face, fingerprint data to send to the backend server?
// What is the best way to declare a BaseReponse<T> model that i can parse json?
// Like:
class BaseResponse<T> {
final int code = 0;
final String message = '';
final T? data;
}
BaseResponse<TestModel> response = await network()
BaseResponse<List<TestModel>> response = await network()
good morning. Anyone have any thought son weird build runner issues? [SEVERE] json_serializable:json_serializable on test/widgets/blahblahtest.dart:
Invalid argument(s): Missing library: blahblah_nontest.dart - even though it does exist, has no issues, compiles, and is NOT references in blahblahtest.dart :(
<!-- Put your application class name below -->
<application
android:name="App">
</application>
Hello
I'm integrating mastercard payment gateway sdk in my project, this is the link
https://github.com/Mastercard-Gateway/gateway-android-sdk/wiki/3d-secure-authentication
I want to display 3-D Secure authentication screen but when the app launches it crash and the error it is displaying "java.lang.IllegalStateException: You need to use a Theme.AppCompat theme (or descendant) with this activity". I checked in stackoverflow but unfortunately no success.
import 'dart:async';
final stream1 = Stream.periodic(Duration(seconds: 1), ((n) => (n)));
final stream2 = Stream.periodic(Duration(seconds: 1), ((n) => (n * 1000)));
main(List<String> arguments) async {
await for (var e in action()) {
print(e);
}
}
Stream<int> action() async* {
await for (var e in stream1) {
yield e;
if (e == 5) {
break;
}
}
yield* stream2;
}