slider_captcha 0.0.2 slider_captcha: ^0.0.2 copied to clipboard
slide captcha the same as binance
import 'package:flutter/cupertino.dart';
import 'package:flutter/material.dart';
import 'package:slider_captcha/presentation/screens/slider_captcha_extention.dart';
import 'package:slider_captcha/self.dart';
void main() {
runApp(const MyApp());
}
class MyApp extends StatelessWidget {
const MyApp({Key? key}) : super(key: key);
// This widget is the root of your application.
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'Flutter Demo',
theme: ThemeData(
primarySwatch: Colors.blue,
),
home: const MyHomePage(title: 'Flutter Demo Home Page'),
);
}
}
class MyHomePage extends StatefulWidget {
const MyHomePage({Key? key, required this.title}) : super(key: key);
final String title;
@override
State<MyHomePage> createState() => _MyHomePageState();
}
class _MyHomePageState extends State<MyHomePage> {
@override
Widget build(BuildContext context) {
return Scaffold(
floatingActionButton: IconButton(
icon: const Icon(Icons.add_shopping_cart),
onPressed: () => showCaptcha(context),
),
body: const SizedBox());
}
void showMyDialog(BuildContext context) {
showDialog(
context: context,
builder: (context) {
return AlertDialog(
title: const Icon(
Icons.check_circle_outline,
color: Colors.green,
),
content: Row(
mainAxisAlignment: MainAxisAlignment.center,
children: const [
Text('Xác thực thành công'),
],
),
);
});
}
void showCaptcha(BuildContext context) {
showDialog(
context: context,
builder: (context) {
return Dialog(
child: Padding(
padding: const EdgeInsets.all(8.0),
child: SliderCaptchaExtension(
image: Image.asset(
'assets/image.jpeg',
fit: BoxFit.fitWidth,
),
onSuccess: () => showMyDialog(context),
),
),
);
});
}
}