v2.2.5validation_textformfield
Flutter 文字欄位驗證讓您可以在 Flutter 應用程式中驗證不同的文字表單欄位。
37喜歡 55近 30 天下載130Pub 分數
AndroidiOSWebmacOSWindowsLinux
Flutter 文字欄位驗證讓您可以在 Flutter 應用程式中驗證不同的文字表單欄位
{"sdk":"flutter"}{"sdk":"flutter"}^1.0.0以下為英文專案原文快照,最新內容請造訪 GitHub。
dart pub get):dependencies:
validation_textformfield: Update version
import 'package:validation_textformfield/validation_textformfield.dart';
A Flutter package for launching a Validation TextFormField . Supports iOS, Android, web, Windows, macOS, and Linux.
EmailValidationTextField(
whenTextFieldEmpty: "Please enter email",
validatorMassage: "Please enter valid email",
decoration: InputDecoration(
focusedBorder: OutlineInputBorder(
borderSide: BorderSide(color: Colors.black, width: 0.5),
),
enabledBorder: OutlineInputBorder(
borderSide: BorderSide(color: Colors.black, width: 0.5),
),
border: OutlineInputBorder(),
counterText: '',
hintStyle: TextStyle(color: Colors.black, fontSize: 18.0)),
textEditingController: txtEmailCtrl,
)
PassWordValidationTextFiled(
lineIndicator:false,
passwordMinError: "Must be more than 5 charater",
hasPasswordEmpty: "Password is Empty",
passwordMaxError: "Password to long",
passWordUpperCaseError: "at least one Uppercase (Capital)lette",
passWordDigitsCaseError: "at least one digit",
passwordLowercaseError: "at least one lowercase character",
passWordSpecialCharacters: "at least one Special Characters",
obscureText: _isObscure,
scrollPadding: EdgeInsets.only(left: 60),
onChanged: (value) {
// print(value);
},
passTextEditingController: txtPasswordCtrl,
passwordMaxLength: 10,
passwordMinLength: 5,
),
ConfirmPassWordValidationTextFromField(
obscureText: _isObscure,
// obscureText: _isObscure,
scrollPadding: EdgeInsets.only(left: 60),
onChanged: (value) {
// print(value);
},
whenTextFieldEmpty: "Empty",
validatorMassage: "Password not Match",
confirmtextEditingController: txtConfPasswordCtrl,
// passtControllername:txtPasswordCtrl
),
See the example app for more complex examples.
BasicPassword
passwordLiner
For help getting started with Flutter, view our online documentation.