├── .gitattributes ├── .github └── workflows │ └── main_action.yml ├── .gitignore ├── .metadata ├── CHANGELOG.md ├── LICENSE ├── README.md ├── analysis_options.yaml ├── coverage ├── html │ ├── amber.png │ ├── cmd_line │ ├── emerald.png │ ├── gcov.css │ ├── glass.png │ ├── index-sort-f.html │ ├── index-sort-l.html │ ├── index.html │ ├── lib │ │ ├── lib │ │ │ ├── helper.dart.func-c.html │ │ │ ├── helper.dart.func.html │ │ │ ├── helper.dart.gcov.html │ │ │ ├── index-sort-f.html │ │ │ ├── index-sort-l.html │ │ │ └── index.html │ │ └── rules │ │ │ └── lib │ │ │ └── rules │ │ │ ├── alpha_numeric.dart.func-c.html │ │ │ ├── alpha_numeric.dart.func.html │ │ │ ├── alpha_numeric.dart.gcov.html │ │ │ ├── between.dart.func-c.html │ │ │ ├── between.dart.func.html │ │ │ ├── between.dart.gcov.html │ │ │ ├── double.dart.func-c.html │ │ │ ├── double.dart.func.html │ │ │ ├── double.dart.gcov.html │ │ │ ├── email.dart.func-c.html │ │ │ ├── email.dart.func.html │ │ │ ├── email.dart.gcov.html │ │ │ ├── ends_with.dart.func-c.html │ │ │ ├── ends_with.dart.func.html │ │ │ ├── ends_with.dart.gcov.html │ │ │ ├── gt.dart.func-c.html │ │ │ ├── gt.dart.func.html │ │ │ ├── gt.dart.gcov.html │ │ │ ├── gte.dart.func-c.html │ │ │ ├── gte.dart.func.html │ │ │ ├── gte.dart.gcov.html │ │ │ ├── in.dart.func-c.html │ │ │ ├── in.dart.func.html │ │ │ ├── in.dart.gcov.html │ │ │ ├── index-sort-f.html │ │ │ ├── index-sort-l.html │ │ │ ├── index.html │ │ │ ├── integer.dart.func-c.html │ │ │ ├── integer.dart.func.html │ │ │ ├── integer.dart.gcov.html │ │ │ ├── ip.dart.func-c.html │ │ │ ├── ip.dart.func.html │ │ │ ├── ip.dart.gcov.html │ │ │ ├── lowercase.dart.func-c.html │ │ │ ├── lowercase.dart.func.html │ │ │ ├── lowercase.dart.gcov.html │ │ │ ├── lt.dart.func-c.html │ │ │ ├── lt.dart.func.html │ │ │ ├── lt.dart.gcov.html │ │ │ ├── lte.dart.func-c.html │ │ │ ├── lte.dart.func.html │ │ │ ├── lte.dart.gcov.html │ │ │ ├── max.dart.func-c.html │ │ │ ├── max.dart.func.html │ │ │ ├── max.dart.gcov.html │ │ │ ├── min.dart.func-c.html │ │ │ ├── min.dart.func.html │ │ │ ├── min.dart.gcov.html │ │ │ ├── not_in.dart.func-c.html │ │ │ ├── not_in.dart.func.html │ │ │ ├── not_in.dart.gcov.html │ │ │ ├── numeric.dart.func-c.html │ │ │ ├── numeric.dart.func.html │ │ │ ├── numeric.dart.gcov.html │ │ │ ├── regex.dart.func-c.html │ │ │ ├── regex.dart.func.html │ │ │ ├── regex.dart.gcov.html │ │ │ ├── required.dart.func-c.html │ │ │ ├── required.dart.func.html │ │ │ ├── required.dart.gcov.html │ │ │ ├── rule_protocol.dart.func-c.html │ │ │ ├── rule_protocol.dart.func.html │ │ │ ├── rule_protocol.dart.gcov.html │ │ │ ├── same.dart.func-c.html │ │ │ ├── same.dart.func.html │ │ │ ├── same.dart.gcov.html │ │ │ ├── starts_with.dart.func-c.html │ │ │ ├── starts_with.dart.func.html │ │ │ ├── starts_with.dart.gcov.html │ │ │ ├── uppercase.dart.func-c.html │ │ │ ├── uppercase.dart.func.html │ │ │ ├── uppercase.dart.gcov.html │ │ │ ├── url.dart.func-c.html │ │ │ ├── url.dart.func.html │ │ │ └── url.dart.gcov.html │ ├── ruby.png │ ├── snow.png │ └── updown.png └── lcov.info ├── example ├── .gitignore ├── .metadata ├── README.md ├── analysis_options.yaml ├── android │ ├── .gitignore │ ├── app │ │ ├── build.gradle │ │ └── src │ │ │ ├── debug │ │ │ └── AndroidManifest.xml │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── kotlin │ │ │ │ └── com │ │ │ │ │ └── example │ │ │ │ │ └── example │ │ │ │ │ └── MainActivity.kt │ │ │ └── res │ │ │ │ ├── drawable-v21 │ │ │ │ └── launch_background.xml │ │ │ │ ├── drawable │ │ │ │ └── launch_background.xml │ │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── values-night │ │ │ │ └── styles.xml │ │ │ │ └── values │ │ │ │ └── styles.xml │ │ │ └── profile │ │ │ └── AndroidManifest.xml │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ └── gradle-wrapper.properties │ └── settings.gradle ├── ios │ ├── .gitignore │ ├── Flutter │ │ ├── AppFrameworkInfo.plist │ │ ├── Debug.xcconfig │ │ └── Release.xcconfig │ ├── Runner.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ │ └── WorkspaceSettings.xcsettings │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── Runner.xcscheme │ ├── Runner.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ └── WorkspaceSettings.xcsettings │ └── Runner │ │ ├── AppDelegate.swift │ │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ ├── Contents.json │ │ │ ├── Icon-App-1024x1024@1x.png │ │ │ ├── Icon-App-20x20@1x.png │ │ │ ├── Icon-App-20x20@2x.png │ │ │ ├── Icon-App-20x20@3x.png │ │ │ ├── Icon-App-29x29@1x.png │ │ │ ├── Icon-App-29x29@2x.png │ │ │ ├── Icon-App-29x29@3x.png │ │ │ ├── Icon-App-40x40@1x.png │ │ │ ├── Icon-App-40x40@2x.png │ │ │ ├── Icon-App-40x40@3x.png │ │ │ ├── Icon-App-60x60@2x.png │ │ │ ├── Icon-App-60x60@3x.png │ │ │ ├── Icon-App-76x76@1x.png │ │ │ ├── Icon-App-76x76@2x.png │ │ │ └── Icon-App-83.5x83.5@2x.png │ │ └── LaunchImage.imageset │ │ │ ├── Contents.json │ │ │ ├── LaunchImage.png │ │ │ ├── LaunchImage@2x.png │ │ │ ├── LaunchImage@3x.png │ │ │ └── README.md │ │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ │ ├── Info.plist │ │ └── Runner-Bridging-Header.h ├── lib │ └── main.dart ├── pubspec.lock ├── pubspec.yaml ├── test │ └── widget_test.dart ├── web │ ├── favicon.png │ ├── icons │ │ ├── Icon-192.png │ │ ├── Icon-512.png │ │ ├── Icon-maskable-192.png │ │ └── Icon-maskable-512.png │ ├── index.html │ └── manifest.json └── windows │ ├── .gitignore │ ├── CMakeLists.txt │ ├── flutter │ ├── CMakeLists.txt │ ├── generated_plugin_registrant.cc │ ├── generated_plugin_registrant.h │ └── generated_plugins.cmake │ └── runner │ ├── CMakeLists.txt │ ├── Runner.rc │ ├── flutter_window.cpp │ ├── flutter_window.h │ ├── main.cpp │ ├── resource.h │ ├── resources │ └── app_icon.ico │ ├── runner.exe.manifest │ ├── utils.cpp │ ├── utils.h │ ├── win32_window.cpp │ └── win32_window.h ├── forward_emails.txt ├── lib ├── constants │ └── strings.dart ├── extensions │ ├── extensions.dart │ ├── list_extension.dart │ ├── string_extension.dart │ └── type_alias.dart ├── flutter_laravel_form_validation.dart ├── helper.dart ├── laravel_validation_rules.dart ├── rules │ ├── alpha_numeric.dart │ ├── between.dart │ ├── double.dart │ ├── email.dart │ ├── ends_with.dart │ ├── gt.dart │ ├── gte.dart │ ├── in.dart │ ├── integer.dart │ ├── ip.dart │ ├── lowercase.dart │ ├── lt.dart │ ├── lte.dart │ ├── max.dart │ ├── min.dart │ ├── not_in.dart │ ├── numeric.dart │ ├── regex.dart │ ├── required.dart │ ├── rule_protocol.dart │ ├── rules.dart │ ├── same.dart │ ├── starts_with.dart │ ├── uppercase.dart │ └── url.dart └── validator.dart ├── pubspec.yaml └── test └── validator_test.dart /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abiodundotdev/flutter_laravel_form_validation/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/main_action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abiodundotdev/flutter_laravel_form_validation/HEAD/.github/workflows/main_action.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abiodundotdev/flutter_laravel_form_validation/HEAD/.gitignore -------------------------------------------------------------------------------- /.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abiodundotdev/flutter_laravel_form_validation/HEAD/.metadata -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- 1 | ## 1.0.4 2 | 3 | * Updated FLValidator Class 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abiodundotdev/flutter_laravel_form_validation/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abiodundotdev/flutter_laravel_form_validation/HEAD/README.md -------------------------------------------------------------------------------- /analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abiodundotdev/flutter_laravel_form_validation/HEAD/analysis_options.yaml -------------------------------------------------------------------------------- /coverage/html/amber.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abiodundotdev/flutter_laravel_form_validation/HEAD/coverage/html/amber.png -------------------------------------------------------------------------------- /coverage/html/cmd_line: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abiodundotdev/flutter_laravel_form_validation/HEAD/coverage/html/cmd_line -------------------------------------------------------------------------------- /coverage/html/emerald.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abiodundotdev/flutter_laravel_form_validation/HEAD/coverage/html/emerald.png -------------------------------------------------------------------------------- /coverage/html/gcov.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abiodundotdev/flutter_laravel_form_validation/HEAD/coverage/html/gcov.css -------------------------------------------------------------------------------- /coverage/html/glass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abiodundotdev/flutter_laravel_form_validation/HEAD/coverage/html/glass.png -------------------------------------------------------------------------------- /coverage/html/index-sort-f.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abiodundotdev/flutter_laravel_form_validation/HEAD/coverage/html/index-sort-f.html -------------------------------------------------------------------------------- /coverage/html/index-sort-l.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abiodundotdev/flutter_laravel_form_validation/HEAD/coverage/html/index-sort-l.html -------------------------------------------------------------------------------- /coverage/html/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abiodundotdev/flutter_laravel_form_validation/HEAD/coverage/html/index.html -------------------------------------------------------------------------------- /coverage/html/lib/lib/helper.dart.func-c.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abiodundotdev/flutter_laravel_form_validation/HEAD/coverage/html/lib/lib/helper.dart.func-c.html -------------------------------------------------------------------------------- /coverage/html/lib/lib/helper.dart.func.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abiodundotdev/flutter_laravel_form_validation/HEAD/coverage/html/lib/lib/helper.dart.func.html -------------------------------------------------------------------------------- /coverage/html/lib/lib/helper.dart.gcov.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abiodundotdev/flutter_laravel_form_validation/HEAD/coverage/html/lib/lib/helper.dart.gcov.html -------------------------------------------------------------------------------- /coverage/html/lib/lib/index-sort-f.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abiodundotdev/flutter_laravel_form_validation/HEAD/coverage/html/lib/lib/index-sort-f.html -------------------------------------------------------------------------------- /coverage/html/lib/lib/index-sort-l.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abiodundotdev/flutter_laravel_form_validation/HEAD/coverage/html/lib/lib/index-sort-l.html -------------------------------------------------------------------------------- /coverage/html/lib/lib/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abiodundotdev/flutter_laravel_form_validation/HEAD/coverage/html/lib/lib/index.html -------------------------------------------------------------------------------- /coverage/html/lib/rules/lib/rules/alpha_numeric.dart.func-c.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abiodundotdev/flutter_laravel_form_validation/HEAD/coverage/html/lib/rules/lib/rules/alpha_numeric.dart.func-c.html -------------------------------------------------------------------------------- /coverage/html/lib/rules/lib/rules/alpha_numeric.dart.func.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abiodundotdev/flutter_laravel_form_validation/HEAD/coverage/html/lib/rules/lib/rules/alpha_numeric.dart.func.html -------------------------------------------------------------------------------- /coverage/html/lib/rules/lib/rules/alpha_numeric.dart.gcov.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abiodundotdev/flutter_laravel_form_validation/HEAD/coverage/html/lib/rules/lib/rules/alpha_numeric.dart.gcov.html -------------------------------------------------------------------------------- /coverage/html/lib/rules/lib/rules/between.dart.func-c.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abiodundotdev/flutter_laravel_form_validation/HEAD/coverage/html/lib/rules/lib/rules/between.dart.func-c.html -------------------------------------------------------------------------------- /coverage/html/lib/rules/lib/rules/between.dart.func.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abiodundotdev/flutter_laravel_form_validation/HEAD/coverage/html/lib/rules/lib/rules/between.dart.func.html -------------------------------------------------------------------------------- /coverage/html/lib/rules/lib/rules/between.dart.gcov.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abiodundotdev/flutter_laravel_form_validation/HEAD/coverage/html/lib/rules/lib/rules/between.dart.gcov.html -------------------------------------------------------------------------------- /coverage/html/lib/rules/lib/rules/double.dart.func-c.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abiodundotdev/flutter_laravel_form_validation/HEAD/coverage/html/lib/rules/lib/rules/double.dart.func-c.html -------------------------------------------------------------------------------- /coverage/html/lib/rules/lib/rules/double.dart.func.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abiodundotdev/flutter_laravel_form_validation/HEAD/coverage/html/lib/rules/lib/rules/double.dart.func.html -------------------------------------------------------------------------------- /coverage/html/lib/rules/lib/rules/double.dart.gcov.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abiodundotdev/flutter_laravel_form_validation/HEAD/coverage/html/lib/rules/lib/rules/double.dart.gcov.html -------------------------------------------------------------------------------- /coverage/html/lib/rules/lib/rules/email.dart.func-c.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abiodundotdev/flutter_laravel_form_validation/HEAD/coverage/html/lib/rules/lib/rules/email.dart.func-c.html -------------------------------------------------------------------------------- /coverage/html/lib/rules/lib/rules/email.dart.func.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abiodundotdev/flutter_laravel_form_validation/HEAD/coverage/html/lib/rules/lib/rules/email.dart.func.html -------------------------------------------------------------------------------- /coverage/html/lib/rules/lib/rules/email.dart.gcov.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abiodundotdev/flutter_laravel_form_validation/HEAD/coverage/html/lib/rules/lib/rules/email.dart.gcov.html -------------------------------------------------------------------------------- /coverage/html/lib/rules/lib/rules/ends_with.dart.func-c.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abiodundotdev/flutter_laravel_form_validation/HEAD/coverage/html/lib/rules/lib/rules/ends_with.dart.func-c.html -------------------------------------------------------------------------------- /coverage/html/lib/rules/lib/rules/ends_with.dart.func.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abiodundotdev/flutter_laravel_form_validation/HEAD/coverage/html/lib/rules/lib/rules/ends_with.dart.func.html -------------------------------------------------------------------------------- /coverage/html/lib/rules/lib/rules/ends_with.dart.gcov.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abiodundotdev/flutter_laravel_form_validation/HEAD/coverage/html/lib/rules/lib/rules/ends_with.dart.gcov.html -------------------------------------------------------------------------------- /coverage/html/lib/rules/lib/rules/gt.dart.func-c.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abiodundotdev/flutter_laravel_form_validation/HEAD/coverage/html/lib/rules/lib/rules/gt.dart.func-c.html -------------------------------------------------------------------------------- /coverage/html/lib/rules/lib/rules/gt.dart.func.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abiodundotdev/flutter_laravel_form_validation/HEAD/coverage/html/lib/rules/lib/rules/gt.dart.func.html -------------------------------------------------------------------------------- /coverage/html/lib/rules/lib/rules/gt.dart.gcov.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abiodundotdev/flutter_laravel_form_validation/HEAD/coverage/html/lib/rules/lib/rules/gt.dart.gcov.html -------------------------------------------------------------------------------- /coverage/html/lib/rules/lib/rules/gte.dart.func-c.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abiodundotdev/flutter_laravel_form_validation/HEAD/coverage/html/lib/rules/lib/rules/gte.dart.func-c.html -------------------------------------------------------------------------------- /coverage/html/lib/rules/lib/rules/gte.dart.func.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abiodundotdev/flutter_laravel_form_validation/HEAD/coverage/html/lib/rules/lib/rules/gte.dart.func.html -------------------------------------------------------------------------------- /coverage/html/lib/rules/lib/rules/gte.dart.gcov.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abiodundotdev/flutter_laravel_form_validation/HEAD/coverage/html/lib/rules/lib/rules/gte.dart.gcov.html -------------------------------------------------------------------------------- /coverage/html/lib/rules/lib/rules/in.dart.func-c.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abiodundotdev/flutter_laravel_form_validation/HEAD/coverage/html/lib/rules/lib/rules/in.dart.func-c.html -------------------------------------------------------------------------------- /coverage/html/lib/rules/lib/rules/in.dart.func.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abiodundotdev/flutter_laravel_form_validation/HEAD/coverage/html/lib/rules/lib/rules/in.dart.func.html -------------------------------------------------------------------------------- /coverage/html/lib/rules/lib/rules/in.dart.gcov.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abiodundotdev/flutter_laravel_form_validation/HEAD/coverage/html/lib/rules/lib/rules/in.dart.gcov.html -------------------------------------------------------------------------------- /coverage/html/lib/rules/lib/rules/index-sort-f.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abiodundotdev/flutter_laravel_form_validation/HEAD/coverage/html/lib/rules/lib/rules/index-sort-f.html -------------------------------------------------------------------------------- /coverage/html/lib/rules/lib/rules/index-sort-l.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abiodundotdev/flutter_laravel_form_validation/HEAD/coverage/html/lib/rules/lib/rules/index-sort-l.html -------------------------------------------------------------------------------- /coverage/html/lib/rules/lib/rules/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abiodundotdev/flutter_laravel_form_validation/HEAD/coverage/html/lib/rules/lib/rules/index.html -------------------------------------------------------------------------------- /coverage/html/lib/rules/lib/rules/integer.dart.func-c.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abiodundotdev/flutter_laravel_form_validation/HEAD/coverage/html/lib/rules/lib/rules/integer.dart.func-c.html -------------------------------------------------------------------------------- /coverage/html/lib/rules/lib/rules/integer.dart.func.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abiodundotdev/flutter_laravel_form_validation/HEAD/coverage/html/lib/rules/lib/rules/integer.dart.func.html -------------------------------------------------------------------------------- /coverage/html/lib/rules/lib/rules/integer.dart.gcov.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abiodundotdev/flutter_laravel_form_validation/HEAD/coverage/html/lib/rules/lib/rules/integer.dart.gcov.html -------------------------------------------------------------------------------- /coverage/html/lib/rules/lib/rules/ip.dart.func-c.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abiodundotdev/flutter_laravel_form_validation/HEAD/coverage/html/lib/rules/lib/rules/ip.dart.func-c.html -------------------------------------------------------------------------------- /coverage/html/lib/rules/lib/rules/ip.dart.func.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abiodundotdev/flutter_laravel_form_validation/HEAD/coverage/html/lib/rules/lib/rules/ip.dart.func.html -------------------------------------------------------------------------------- /coverage/html/lib/rules/lib/rules/ip.dart.gcov.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abiodundotdev/flutter_laravel_form_validation/HEAD/coverage/html/lib/rules/lib/rules/ip.dart.gcov.html -------------------------------------------------------------------------------- /coverage/html/lib/rules/lib/rules/lowercase.dart.func-c.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abiodundotdev/flutter_laravel_form_validation/HEAD/coverage/html/lib/rules/lib/rules/lowercase.dart.func-c.html -------------------------------------------------------------------------------- /coverage/html/lib/rules/lib/rules/lowercase.dart.func.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abiodundotdev/flutter_laravel_form_validation/HEAD/coverage/html/lib/rules/lib/rules/lowercase.dart.func.html -------------------------------------------------------------------------------- /coverage/html/lib/rules/lib/rules/lowercase.dart.gcov.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abiodundotdev/flutter_laravel_form_validation/HEAD/coverage/html/lib/rules/lib/rules/lowercase.dart.gcov.html -------------------------------------------------------------------------------- /coverage/html/lib/rules/lib/rules/lt.dart.func-c.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abiodundotdev/flutter_laravel_form_validation/HEAD/coverage/html/lib/rules/lib/rules/lt.dart.func-c.html -------------------------------------------------------------------------------- /coverage/html/lib/rules/lib/rules/lt.dart.func.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abiodundotdev/flutter_laravel_form_validation/HEAD/coverage/html/lib/rules/lib/rules/lt.dart.func.html -------------------------------------------------------------------------------- /coverage/html/lib/rules/lib/rules/lt.dart.gcov.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abiodundotdev/flutter_laravel_form_validation/HEAD/coverage/html/lib/rules/lib/rules/lt.dart.gcov.html -------------------------------------------------------------------------------- /coverage/html/lib/rules/lib/rules/lte.dart.func-c.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abiodundotdev/flutter_laravel_form_validation/HEAD/coverage/html/lib/rules/lib/rules/lte.dart.func-c.html -------------------------------------------------------------------------------- /coverage/html/lib/rules/lib/rules/lte.dart.func.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abiodundotdev/flutter_laravel_form_validation/HEAD/coverage/html/lib/rules/lib/rules/lte.dart.func.html -------------------------------------------------------------------------------- /coverage/html/lib/rules/lib/rules/lte.dart.gcov.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abiodundotdev/flutter_laravel_form_validation/HEAD/coverage/html/lib/rules/lib/rules/lte.dart.gcov.html -------------------------------------------------------------------------------- /coverage/html/lib/rules/lib/rules/max.dart.func-c.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abiodundotdev/flutter_laravel_form_validation/HEAD/coverage/html/lib/rules/lib/rules/max.dart.func-c.html -------------------------------------------------------------------------------- /coverage/html/lib/rules/lib/rules/max.dart.func.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abiodundotdev/flutter_laravel_form_validation/HEAD/coverage/html/lib/rules/lib/rules/max.dart.func.html -------------------------------------------------------------------------------- /coverage/html/lib/rules/lib/rules/max.dart.gcov.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abiodundotdev/flutter_laravel_form_validation/HEAD/coverage/html/lib/rules/lib/rules/max.dart.gcov.html -------------------------------------------------------------------------------- /coverage/html/lib/rules/lib/rules/min.dart.func-c.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abiodundotdev/flutter_laravel_form_validation/HEAD/coverage/html/lib/rules/lib/rules/min.dart.func-c.html -------------------------------------------------------------------------------- /coverage/html/lib/rules/lib/rules/min.dart.func.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abiodundotdev/flutter_laravel_form_validation/HEAD/coverage/html/lib/rules/lib/rules/min.dart.func.html -------------------------------------------------------------------------------- /coverage/html/lib/rules/lib/rules/min.dart.gcov.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abiodundotdev/flutter_laravel_form_validation/HEAD/coverage/html/lib/rules/lib/rules/min.dart.gcov.html -------------------------------------------------------------------------------- /coverage/html/lib/rules/lib/rules/not_in.dart.func-c.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abiodundotdev/flutter_laravel_form_validation/HEAD/coverage/html/lib/rules/lib/rules/not_in.dart.func-c.html -------------------------------------------------------------------------------- /coverage/html/lib/rules/lib/rules/not_in.dart.func.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abiodundotdev/flutter_laravel_form_validation/HEAD/coverage/html/lib/rules/lib/rules/not_in.dart.func.html -------------------------------------------------------------------------------- /coverage/html/lib/rules/lib/rules/not_in.dart.gcov.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abiodundotdev/flutter_laravel_form_validation/HEAD/coverage/html/lib/rules/lib/rules/not_in.dart.gcov.html -------------------------------------------------------------------------------- /coverage/html/lib/rules/lib/rules/numeric.dart.func-c.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abiodundotdev/flutter_laravel_form_validation/HEAD/coverage/html/lib/rules/lib/rules/numeric.dart.func-c.html -------------------------------------------------------------------------------- /coverage/html/lib/rules/lib/rules/numeric.dart.func.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abiodundotdev/flutter_laravel_form_validation/HEAD/coverage/html/lib/rules/lib/rules/numeric.dart.func.html -------------------------------------------------------------------------------- /coverage/html/lib/rules/lib/rules/numeric.dart.gcov.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abiodundotdev/flutter_laravel_form_validation/HEAD/coverage/html/lib/rules/lib/rules/numeric.dart.gcov.html -------------------------------------------------------------------------------- /coverage/html/lib/rules/lib/rules/regex.dart.func-c.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abiodundotdev/flutter_laravel_form_validation/HEAD/coverage/html/lib/rules/lib/rules/regex.dart.func-c.html -------------------------------------------------------------------------------- /coverage/html/lib/rules/lib/rules/regex.dart.func.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abiodundotdev/flutter_laravel_form_validation/HEAD/coverage/html/lib/rules/lib/rules/regex.dart.func.html -------------------------------------------------------------------------------- /coverage/html/lib/rules/lib/rules/regex.dart.gcov.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abiodundotdev/flutter_laravel_form_validation/HEAD/coverage/html/lib/rules/lib/rules/regex.dart.gcov.html -------------------------------------------------------------------------------- /coverage/html/lib/rules/lib/rules/required.dart.func-c.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abiodundotdev/flutter_laravel_form_validation/HEAD/coverage/html/lib/rules/lib/rules/required.dart.func-c.html -------------------------------------------------------------------------------- /coverage/html/lib/rules/lib/rules/required.dart.func.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abiodundotdev/flutter_laravel_form_validation/HEAD/coverage/html/lib/rules/lib/rules/required.dart.func.html -------------------------------------------------------------------------------- /coverage/html/lib/rules/lib/rules/required.dart.gcov.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abiodundotdev/flutter_laravel_form_validation/HEAD/coverage/html/lib/rules/lib/rules/required.dart.gcov.html -------------------------------------------------------------------------------- /coverage/html/lib/rules/lib/rules/rule_protocol.dart.func-c.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abiodundotdev/flutter_laravel_form_validation/HEAD/coverage/html/lib/rules/lib/rules/rule_protocol.dart.func-c.html -------------------------------------------------------------------------------- /coverage/html/lib/rules/lib/rules/rule_protocol.dart.func.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abiodundotdev/flutter_laravel_form_validation/HEAD/coverage/html/lib/rules/lib/rules/rule_protocol.dart.func.html -------------------------------------------------------------------------------- /coverage/html/lib/rules/lib/rules/rule_protocol.dart.gcov.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abiodundotdev/flutter_laravel_form_validation/HEAD/coverage/html/lib/rules/lib/rules/rule_protocol.dart.gcov.html -------------------------------------------------------------------------------- /coverage/html/lib/rules/lib/rules/same.dart.func-c.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abiodundotdev/flutter_laravel_form_validation/HEAD/coverage/html/lib/rules/lib/rules/same.dart.func-c.html -------------------------------------------------------------------------------- /coverage/html/lib/rules/lib/rules/same.dart.func.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abiodundotdev/flutter_laravel_form_validation/HEAD/coverage/html/lib/rules/lib/rules/same.dart.func.html -------------------------------------------------------------------------------- /coverage/html/lib/rules/lib/rules/same.dart.gcov.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abiodundotdev/flutter_laravel_form_validation/HEAD/coverage/html/lib/rules/lib/rules/same.dart.gcov.html -------------------------------------------------------------------------------- /coverage/html/lib/rules/lib/rules/starts_with.dart.func-c.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abiodundotdev/flutter_laravel_form_validation/HEAD/coverage/html/lib/rules/lib/rules/starts_with.dart.func-c.html -------------------------------------------------------------------------------- /coverage/html/lib/rules/lib/rules/starts_with.dart.func.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abiodundotdev/flutter_laravel_form_validation/HEAD/coverage/html/lib/rules/lib/rules/starts_with.dart.func.html -------------------------------------------------------------------------------- /coverage/html/lib/rules/lib/rules/starts_with.dart.gcov.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abiodundotdev/flutter_laravel_form_validation/HEAD/coverage/html/lib/rules/lib/rules/starts_with.dart.gcov.html -------------------------------------------------------------------------------- /coverage/html/lib/rules/lib/rules/uppercase.dart.func-c.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abiodundotdev/flutter_laravel_form_validation/HEAD/coverage/html/lib/rules/lib/rules/uppercase.dart.func-c.html -------------------------------------------------------------------------------- /coverage/html/lib/rules/lib/rules/uppercase.dart.func.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abiodundotdev/flutter_laravel_form_validation/HEAD/coverage/html/lib/rules/lib/rules/uppercase.dart.func.html -------------------------------------------------------------------------------- /coverage/html/lib/rules/lib/rules/uppercase.dart.gcov.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abiodundotdev/flutter_laravel_form_validation/HEAD/coverage/html/lib/rules/lib/rules/uppercase.dart.gcov.html -------------------------------------------------------------------------------- /coverage/html/lib/rules/lib/rules/url.dart.func-c.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abiodundotdev/flutter_laravel_form_validation/HEAD/coverage/html/lib/rules/lib/rules/url.dart.func-c.html -------------------------------------------------------------------------------- /coverage/html/lib/rules/lib/rules/url.dart.func.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abiodundotdev/flutter_laravel_form_validation/HEAD/coverage/html/lib/rules/lib/rules/url.dart.func.html -------------------------------------------------------------------------------- /coverage/html/lib/rules/lib/rules/url.dart.gcov.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abiodundotdev/flutter_laravel_form_validation/HEAD/coverage/html/lib/rules/lib/rules/url.dart.gcov.html -------------------------------------------------------------------------------- /coverage/html/ruby.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abiodundotdev/flutter_laravel_form_validation/HEAD/coverage/html/ruby.png -------------------------------------------------------------------------------- /coverage/html/snow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abiodundotdev/flutter_laravel_form_validation/HEAD/coverage/html/snow.png -------------------------------------------------------------------------------- /coverage/html/updown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abiodundotdev/flutter_laravel_form_validation/HEAD/coverage/html/updown.png -------------------------------------------------------------------------------- /coverage/lcov.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abiodundotdev/flutter_laravel_form_validation/HEAD/coverage/lcov.info -------------------------------------------------------------------------------- /example/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abiodundotdev/flutter_laravel_form_validation/HEAD/example/.gitignore -------------------------------------------------------------------------------- /example/.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abiodundotdev/flutter_laravel_form_validation/HEAD/example/.metadata -------------------------------------------------------------------------------- /example/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abiodundotdev/flutter_laravel_form_validation/HEAD/example/README.md -------------------------------------------------------------------------------- /example/analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abiodundotdev/flutter_laravel_form_validation/HEAD/example/analysis_options.yaml -------------------------------------------------------------------------------- /example/android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abiodundotdev/flutter_laravel_form_validation/HEAD/example/android/.gitignore -------------------------------------------------------------------------------- /example/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abiodundotdev/flutter_laravel_form_validation/HEAD/example/android/app/build.gradle -------------------------------------------------------------------------------- /example/android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abiodundotdev/flutter_laravel_form_validation/HEAD/example/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /example/android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abiodundotdev/flutter_laravel_form_validation/HEAD/example/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /example/android/app/src/main/kotlin/com/example/example/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abiodundotdev/flutter_laravel_form_validation/HEAD/example/android/app/src/main/kotlin/com/example/example/MainActivity.kt -------------------------------------------------------------------------------- /example/android/app/src/main/res/drawable-v21/launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abiodundotdev/flutter_laravel_form_validation/HEAD/example/android/app/src/main/res/drawable-v21/launch_background.xml -------------------------------------------------------------------------------- /example/android/app/src/main/res/drawable/launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abiodundotdev/flutter_laravel_form_validation/HEAD/example/android/app/src/main/res/drawable/launch_background.xml -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abiodundotdev/flutter_laravel_form_validation/HEAD/example/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abiodundotdev/flutter_laravel_form_validation/HEAD/example/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abiodundotdev/flutter_laravel_form_validation/HEAD/example/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abiodundotdev/flutter_laravel_form_validation/HEAD/example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abiodundotdev/flutter_laravel_form_validation/HEAD/example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/values-night/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abiodundotdev/flutter_laravel_form_validation/HEAD/example/android/app/src/main/res/values-night/styles.xml -------------------------------------------------------------------------------- /example/android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abiodundotdev/flutter_laravel_form_validation/HEAD/example/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /example/android/app/src/profile/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abiodundotdev/flutter_laravel_form_validation/HEAD/example/android/app/src/profile/AndroidManifest.xml -------------------------------------------------------------------------------- /example/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abiodundotdev/flutter_laravel_form_validation/HEAD/example/android/build.gradle -------------------------------------------------------------------------------- /example/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abiodundotdev/flutter_laravel_form_validation/HEAD/example/android/gradle.properties -------------------------------------------------------------------------------- /example/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abiodundotdev/flutter_laravel_form_validation/HEAD/example/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /example/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abiodundotdev/flutter_laravel_form_validation/HEAD/example/android/settings.gradle -------------------------------------------------------------------------------- /example/ios/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abiodundotdev/flutter_laravel_form_validation/HEAD/example/ios/.gitignore -------------------------------------------------------------------------------- /example/ios/Flutter/AppFrameworkInfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abiodundotdev/flutter_laravel_form_validation/HEAD/example/ios/Flutter/AppFrameworkInfo.plist -------------------------------------------------------------------------------- /example/ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /example/ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /example/ios/Runner.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abiodundotdev/flutter_laravel_form_validation/HEAD/example/ios/Runner.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /example/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abiodundotdev/flutter_laravel_form_validation/HEAD/example/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /example/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abiodundotdev/flutter_laravel_form_validation/HEAD/example/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /example/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abiodundotdev/flutter_laravel_form_validation/HEAD/example/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /example/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abiodundotdev/flutter_laravel_form_validation/HEAD/example/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme -------------------------------------------------------------------------------- /example/ios/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abiodundotdev/flutter_laravel_form_validation/HEAD/example/ios/Runner.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /example/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abiodundotdev/flutter_laravel_form_validation/HEAD/example/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /example/ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abiodundotdev/flutter_laravel_form_validation/HEAD/example/ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /example/ios/Runner/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abiodundotdev/flutter_laravel_form_validation/HEAD/example/ios/Runner/AppDelegate.swift -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abiodundotdev/flutter_laravel_form_validation/HEAD/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abiodundotdev/flutter_laravel_form_validation/HEAD/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abiodundotdev/flutter_laravel_form_validation/HEAD/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abiodundotdev/flutter_laravel_form_validation/HEAD/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abiodundotdev/flutter_laravel_form_validation/HEAD/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abiodundotdev/flutter_laravel_form_validation/HEAD/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abiodundotdev/flutter_laravel_form_validation/HEAD/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abiodundotdev/flutter_laravel_form_validation/HEAD/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abiodundotdev/flutter_laravel_form_validation/HEAD/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abiodundotdev/flutter_laravel_form_validation/HEAD/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abiodundotdev/flutter_laravel_form_validation/HEAD/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abiodundotdev/flutter_laravel_form_validation/HEAD/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abiodundotdev/flutter_laravel_form_validation/HEAD/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abiodundotdev/flutter_laravel_form_validation/HEAD/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abiodundotdev/flutter_laravel_form_validation/HEAD/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abiodundotdev/flutter_laravel_form_validation/HEAD/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abiodundotdev/flutter_laravel_form_validation/HEAD/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abiodundotdev/flutter_laravel_form_validation/HEAD/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abiodundotdev/flutter_laravel_form_validation/HEAD/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abiodundotdev/flutter_laravel_form_validation/HEAD/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abiodundotdev/flutter_laravel_form_validation/HEAD/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md -------------------------------------------------------------------------------- /example/ios/Runner/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abiodundotdev/flutter_laravel_form_validation/HEAD/example/ios/Runner/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /example/ios/Runner/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abiodundotdev/flutter_laravel_form_validation/HEAD/example/ios/Runner/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /example/ios/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abiodundotdev/flutter_laravel_form_validation/HEAD/example/ios/Runner/Info.plist -------------------------------------------------------------------------------- /example/ios/Runner/Runner-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "GeneratedPluginRegistrant.h" 2 | -------------------------------------------------------------------------------- /example/lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abiodundotdev/flutter_laravel_form_validation/HEAD/example/lib/main.dart -------------------------------------------------------------------------------- /example/pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abiodundotdev/flutter_laravel_form_validation/HEAD/example/pubspec.lock -------------------------------------------------------------------------------- /example/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abiodundotdev/flutter_laravel_form_validation/HEAD/example/pubspec.yaml -------------------------------------------------------------------------------- /example/test/widget_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abiodundotdev/flutter_laravel_form_validation/HEAD/example/test/widget_test.dart -------------------------------------------------------------------------------- /example/web/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abiodundotdev/flutter_laravel_form_validation/HEAD/example/web/favicon.png -------------------------------------------------------------------------------- /example/web/icons/Icon-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abiodundotdev/flutter_laravel_form_validation/HEAD/example/web/icons/Icon-192.png -------------------------------------------------------------------------------- /example/web/icons/Icon-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abiodundotdev/flutter_laravel_form_validation/HEAD/example/web/icons/Icon-512.png -------------------------------------------------------------------------------- /example/web/icons/Icon-maskable-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abiodundotdev/flutter_laravel_form_validation/HEAD/example/web/icons/Icon-maskable-192.png -------------------------------------------------------------------------------- /example/web/icons/Icon-maskable-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abiodundotdev/flutter_laravel_form_validation/HEAD/example/web/icons/Icon-maskable-512.png -------------------------------------------------------------------------------- /example/web/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abiodundotdev/flutter_laravel_form_validation/HEAD/example/web/index.html -------------------------------------------------------------------------------- /example/web/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abiodundotdev/flutter_laravel_form_validation/HEAD/example/web/manifest.json -------------------------------------------------------------------------------- /example/windows/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abiodundotdev/flutter_laravel_form_validation/HEAD/example/windows/.gitignore -------------------------------------------------------------------------------- /example/windows/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abiodundotdev/flutter_laravel_form_validation/HEAD/example/windows/CMakeLists.txt -------------------------------------------------------------------------------- /example/windows/flutter/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abiodundotdev/flutter_laravel_form_validation/HEAD/example/windows/flutter/CMakeLists.txt -------------------------------------------------------------------------------- /example/windows/flutter/generated_plugin_registrant.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abiodundotdev/flutter_laravel_form_validation/HEAD/example/windows/flutter/generated_plugin_registrant.cc -------------------------------------------------------------------------------- /example/windows/flutter/generated_plugin_registrant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abiodundotdev/flutter_laravel_form_validation/HEAD/example/windows/flutter/generated_plugin_registrant.h -------------------------------------------------------------------------------- /example/windows/flutter/generated_plugins.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abiodundotdev/flutter_laravel_form_validation/HEAD/example/windows/flutter/generated_plugins.cmake -------------------------------------------------------------------------------- /example/windows/runner/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abiodundotdev/flutter_laravel_form_validation/HEAD/example/windows/runner/CMakeLists.txt -------------------------------------------------------------------------------- /example/windows/runner/Runner.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abiodundotdev/flutter_laravel_form_validation/HEAD/example/windows/runner/Runner.rc -------------------------------------------------------------------------------- /example/windows/runner/flutter_window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abiodundotdev/flutter_laravel_form_validation/HEAD/example/windows/runner/flutter_window.cpp -------------------------------------------------------------------------------- /example/windows/runner/flutter_window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abiodundotdev/flutter_laravel_form_validation/HEAD/example/windows/runner/flutter_window.h -------------------------------------------------------------------------------- /example/windows/runner/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abiodundotdev/flutter_laravel_form_validation/HEAD/example/windows/runner/main.cpp -------------------------------------------------------------------------------- /example/windows/runner/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abiodundotdev/flutter_laravel_form_validation/HEAD/example/windows/runner/resource.h -------------------------------------------------------------------------------- /example/windows/runner/resources/app_icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abiodundotdev/flutter_laravel_form_validation/HEAD/example/windows/runner/resources/app_icon.ico -------------------------------------------------------------------------------- /example/windows/runner/runner.exe.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abiodundotdev/flutter_laravel_form_validation/HEAD/example/windows/runner/runner.exe.manifest -------------------------------------------------------------------------------- /example/windows/runner/utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abiodundotdev/flutter_laravel_form_validation/HEAD/example/windows/runner/utils.cpp -------------------------------------------------------------------------------- /example/windows/runner/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abiodundotdev/flutter_laravel_form_validation/HEAD/example/windows/runner/utils.h -------------------------------------------------------------------------------- /example/windows/runner/win32_window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abiodundotdev/flutter_laravel_form_validation/HEAD/example/windows/runner/win32_window.cpp -------------------------------------------------------------------------------- /example/windows/runner/win32_window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abiodundotdev/flutter_laravel_form_validation/HEAD/example/windows/runner/win32_window.h -------------------------------------------------------------------------------- /forward_emails.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abiodundotdev/flutter_laravel_form_validation/HEAD/forward_emails.txt -------------------------------------------------------------------------------- /lib/constants/strings.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abiodundotdev/flutter_laravel_form_validation/HEAD/lib/constants/strings.dart -------------------------------------------------------------------------------- /lib/extensions/extensions.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abiodundotdev/flutter_laravel_form_validation/HEAD/lib/extensions/extensions.dart -------------------------------------------------------------------------------- /lib/extensions/list_extension.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abiodundotdev/flutter_laravel_form_validation/HEAD/lib/extensions/list_extension.dart -------------------------------------------------------------------------------- /lib/extensions/string_extension.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abiodundotdev/flutter_laravel_form_validation/HEAD/lib/extensions/string_extension.dart -------------------------------------------------------------------------------- /lib/extensions/type_alias.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abiodundotdev/flutter_laravel_form_validation/HEAD/lib/extensions/type_alias.dart -------------------------------------------------------------------------------- /lib/flutter_laravel_form_validation.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abiodundotdev/flutter_laravel_form_validation/HEAD/lib/flutter_laravel_form_validation.dart -------------------------------------------------------------------------------- /lib/helper.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abiodundotdev/flutter_laravel_form_validation/HEAD/lib/helper.dart -------------------------------------------------------------------------------- /lib/laravel_validation_rules.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abiodundotdev/flutter_laravel_form_validation/HEAD/lib/laravel_validation_rules.dart -------------------------------------------------------------------------------- /lib/rules/alpha_numeric.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abiodundotdev/flutter_laravel_form_validation/HEAD/lib/rules/alpha_numeric.dart -------------------------------------------------------------------------------- /lib/rules/between.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abiodundotdev/flutter_laravel_form_validation/HEAD/lib/rules/between.dart -------------------------------------------------------------------------------- /lib/rules/double.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abiodundotdev/flutter_laravel_form_validation/HEAD/lib/rules/double.dart -------------------------------------------------------------------------------- /lib/rules/email.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abiodundotdev/flutter_laravel_form_validation/HEAD/lib/rules/email.dart -------------------------------------------------------------------------------- /lib/rules/ends_with.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abiodundotdev/flutter_laravel_form_validation/HEAD/lib/rules/ends_with.dart -------------------------------------------------------------------------------- /lib/rules/gt.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abiodundotdev/flutter_laravel_form_validation/HEAD/lib/rules/gt.dart -------------------------------------------------------------------------------- /lib/rules/gte.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abiodundotdev/flutter_laravel_form_validation/HEAD/lib/rules/gte.dart -------------------------------------------------------------------------------- /lib/rules/in.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abiodundotdev/flutter_laravel_form_validation/HEAD/lib/rules/in.dart -------------------------------------------------------------------------------- /lib/rules/integer.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abiodundotdev/flutter_laravel_form_validation/HEAD/lib/rules/integer.dart -------------------------------------------------------------------------------- /lib/rules/ip.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abiodundotdev/flutter_laravel_form_validation/HEAD/lib/rules/ip.dart -------------------------------------------------------------------------------- /lib/rules/lowercase.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abiodundotdev/flutter_laravel_form_validation/HEAD/lib/rules/lowercase.dart -------------------------------------------------------------------------------- /lib/rules/lt.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abiodundotdev/flutter_laravel_form_validation/HEAD/lib/rules/lt.dart -------------------------------------------------------------------------------- /lib/rules/lte.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abiodundotdev/flutter_laravel_form_validation/HEAD/lib/rules/lte.dart -------------------------------------------------------------------------------- /lib/rules/max.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abiodundotdev/flutter_laravel_form_validation/HEAD/lib/rules/max.dart -------------------------------------------------------------------------------- /lib/rules/min.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abiodundotdev/flutter_laravel_form_validation/HEAD/lib/rules/min.dart -------------------------------------------------------------------------------- /lib/rules/not_in.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abiodundotdev/flutter_laravel_form_validation/HEAD/lib/rules/not_in.dart -------------------------------------------------------------------------------- /lib/rules/numeric.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abiodundotdev/flutter_laravel_form_validation/HEAD/lib/rules/numeric.dart -------------------------------------------------------------------------------- /lib/rules/regex.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abiodundotdev/flutter_laravel_form_validation/HEAD/lib/rules/regex.dart -------------------------------------------------------------------------------- /lib/rules/required.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abiodundotdev/flutter_laravel_form_validation/HEAD/lib/rules/required.dart -------------------------------------------------------------------------------- /lib/rules/rule_protocol.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abiodundotdev/flutter_laravel_form_validation/HEAD/lib/rules/rule_protocol.dart -------------------------------------------------------------------------------- /lib/rules/rules.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abiodundotdev/flutter_laravel_form_validation/HEAD/lib/rules/rules.dart -------------------------------------------------------------------------------- /lib/rules/same.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abiodundotdev/flutter_laravel_form_validation/HEAD/lib/rules/same.dart -------------------------------------------------------------------------------- /lib/rules/starts_with.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abiodundotdev/flutter_laravel_form_validation/HEAD/lib/rules/starts_with.dart -------------------------------------------------------------------------------- /lib/rules/uppercase.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abiodundotdev/flutter_laravel_form_validation/HEAD/lib/rules/uppercase.dart -------------------------------------------------------------------------------- /lib/rules/url.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abiodundotdev/flutter_laravel_form_validation/HEAD/lib/rules/url.dart -------------------------------------------------------------------------------- /lib/validator.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abiodundotdev/flutter_laravel_form_validation/HEAD/lib/validator.dart -------------------------------------------------------------------------------- /pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abiodundotdev/flutter_laravel_form_validation/HEAD/pubspec.yaml -------------------------------------------------------------------------------- /test/validator_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abiodundotdev/flutter_laravel_form_validation/HEAD/test/validator_test.dart --------------------------------------------------------------------------------