Geetest Flutter plugin.
Basic function version, waiting for iteration.
Add this to your package's pubspec.yaml file:
dependencies:
flutter_geetest_plugin: ^1.0.5
You can install packages from the command line:
with Flutter:
$ flutter packages get
Alternatively, your editor might support flutter packages get. Check the docs for your editor to learn more.
Now in your Dart code, you can use:
import 'package:geetest_plugin/geetest_plugin.dart';
Future<void> getGeetest() async {
String result;
// Platform messages may fail, so we use a try/catch PlatformException.
try {
result = await GeetestPlugin.getGeetest('url: api1', 'url: api2');
} on PlatformException {
// _json = 'Failed to get platform version.';
}
// If the widget was removed from the tree while the asynchronous platform
// message was in flight, we want to discard the reply rather than calling
// setState to update our non-existent appearance.
if (!mounted) return;
setState(() {
_json = result;
});
}
- [!] The 'Pods-Runner' target has transitive dependencies that include static binaries:
commenting out use_frameworks