Flutter邮箱验证插件check_disposable_email的使用
Flutter邮箱验证插件check_disposable_email的使用
Check Email disposable Package
该包用于检查用户提供的电子邮件地址是否为临时邮箱。
什么是临时邮箱?
临时邮箱(也称为一次性邮箱、临时邮箱或虚假邮箱)是一种仅在短时间内使用的邮箱地址,使用后即被丢弃。这些邮箱地址通常由各种在线服务或网站提供,允许用户注册服务或访问内容而不使用其主要或个人邮箱地址。
特性
- ✅ 检查临时(虚假)邮箱地址
安装
dependencies:
check_disposable_email: ^0.0.1
使用
import 'package:check_disposable_email/check_disposable_email.dart';
bool isValidEmail = Disposable.instance.hasValidEmail(here your email address);
if(isValidEmail){
// TODO 然后执行某些任务
}else{
// TODO 显示邮箱错误
}
示例代码
以下是完整的示例代码,展示如何在Flutter应用中使用check_disposable_email
插件。
import 'package:check_disposable_email/check_disposable_email.dart';
import 'package:flutter/material.dart';
void main() {
runApp(const MyApp());
}
class MyApp extends StatelessWidget {
const MyApp({super.key});
[@override](/user/override)
Widget build(BuildContext context) {
return MaterialApp(
debugShowCheckedModeBanner: false,
title: 'Disposable Email',
theme: ThemeData(
primarySwatch: Colors.orange,
),
home: const MyHomePage(),
);
}
}
class MyHomePage extends StatefulWidget {
const MyHomePage({
super.key,
});
[@override](/user/override)
State<MyHomePage> createState() => _MyHomePageState();
}
final controller = TextEditingController();
bool? isValidEmail;
class _MyHomePageState extends State<MyHomePage> {
[@override](/user/override)
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
centerTitle: true,
title: const Text(
'Disposable Email Example',
style: TextStyle(color: Colors.white),
),
),
body: Center(
child: ListView(
children: <Widget>[
const SizedBox(height: 30),
Visibility(
visible: emailMessage().isNotEmpty,
child: Icon(
isValidEmail ?? false
? Icons.check_circle_outline
: Icons.cancel_outlined,
size: 80,
color: isValidEmail ?? false ? Colors.green : Colors.red,
),
),
Center(
child: Container(
width: 300,
height: 100,
alignment: Alignment.center,
margin: const EdgeInsets.symmetric(vertical: 10.0),
decoration: BoxDecoration(
borderRadius: BorderRadius.circular(20.0),
color: isValidEmail != null
? isValidEmail!
? Colors.green
: Colors.red
: Colors.white,
),
child: Visibility(
visible: emailMessage().isNotEmpty,
child: Text(
emailMessage(),
textAlign: TextAlign.center,
style: const TextStyle(fontSize: 20, color: Colors.white),
),
),
),
),
const SizedBox(height: 30),
Padding(
padding: const EdgeInsets.all(15.0),
child: TextFormField(
controller: controller,
decoration: InputDecoration(
labelText: "Enter Email",
border: OutlineInputBorder(
borderRadius: BorderRadius.circular(10.0)),
),
),
),
Padding(
padding:
const EdgeInsets.symmetric(vertical: 20, horizontal: 15.0),
child: SizedBox(
height: 50,
child: ElevatedButton(
onPressed: checkIsValidEmail,
child: const Text(
"Check Email",
style: TextStyle(color: Colors.white, fontSize: 16),
),
),
),
),
const SizedBox(height: 30),
Center(
child: Padding(
padding: const EdgeInsets.symmetric(vertical: 20),
child: Text(
"Is Valid:- ${isValidEmail != null ? "$isValidEmail" : ""}",
style: const TextStyle(
fontSize: 25, fontWeight: FontWeight.bold),
),
),
),
],
),
),
);
}
String emailMessage() {
if (isValidEmail == null) return "";
if (isValidEmail!) {
return "Your Email Address is valid";
} else {
return "Your Email Address\nis Not valid or Temporary";
}
}
void checkIsValidEmail() {
if (mounted) {
setState(() {
FocusScope.of(context).unfocus();
isValidEmail = Disposable.instance.hasValidEmail(controller.text);
});
}
}
}
更多关于Flutter邮箱验证插件check_disposable_email的使用的实战系列教程也可以访问 https://www.itying.com/category-92-b0.html
更多关于Flutter邮箱验证插件check_disposable_email的使用的实战系列教程也可以访问 https://www.itying.com/category-92-b0.html
当然,以下是如何在Flutter项目中使用check_disposable_email
插件进行邮箱验证的示例代码。这个插件可以帮助你检测一个邮箱地址是否是临时邮箱(disposable email)。
首先,确保你的Flutter项目已经创建好,并且已经添加了check_disposable_email
插件。你可以通过在你的pubspec.yaml
文件中添加以下依赖来安装这个插件:
dependencies:
flutter:
sdk: flutter
check_disposable_email: ^最新版本号 # 请替换为当前最新版本号
然后运行flutter pub get
来安装依赖。
接下来,你可以在你的Flutter应用中使用这个插件来验证邮箱地址。以下是一个完整的示例代码:
import 'package:flutter/material.dart';
import 'package:check_disposable_email/check_disposable_email.dart';
void main() {
runApp(MyApp());
}
class MyApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'Email Verification Demo',
theme: ThemeData(
primarySwatch: Colors.blue,
),
home: EmailVerificationScreen(),
);
}
}
class EmailVerificationScreen extends StatefulWidget {
@override
_EmailVerificationScreenState createState() => _EmailVerificationScreenState();
}
class _EmailVerificationScreenState extends State<EmailVerificationScreen> {
final TextEditingController _emailController = TextEditingController();
String _result = '';
Future<void> _checkEmail() async {
String email = _emailController.text;
bool isDisposable = await CheckDisposableEmail.checkEmail(email);
setState(() {
if (isDisposable) {
_result = 'This is a disposable email address.';
} else {
_result = 'This is not a disposable email address.';
}
});
}
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: Text('Email Verification Demo'),
),
body: Padding(
padding: const EdgeInsets.all(16.0),
child: Column(
crossAxisAlignment: CrossAxisAlignment.start,
children: <Widget>[
TextField(
controller: _emailController,
decoration: InputDecoration(
labelText: 'Enter your email address',
),
keyboardType: TextInputType.emailAddress,
),
SizedBox(height: 20),
ElevatedButton(
onPressed: _checkEmail,
child: Text('Check Email'),
),
SizedBox(height: 20),
Text(
_result,
style: TextStyle(fontSize: 18, color: Colors.black),
),
],
),
),
);
}
@override
void dispose() {
_emailController.dispose();
super.dispose();
}
}
在这个示例中,我们创建了一个简单的Flutter应用,其中包含一个文本输入框用于输入邮箱地址,一个按钮用于触发邮箱验证,以及一个文本显示区域用于显示验证结果。
关键部分是_checkEmail
函数,它使用CheckDisposableEmail.checkEmail
方法来检查输入的邮箱地址是否是临时邮箱。然后,根据检查结果更新UI中的_result
文本。
确保在实际项目中处理可能的错误和异常,比如网络错误或插件初始化错误,以提高应用的健壮性。