validate_kit 1.0.1 copy "validate_kit: ^1.0.1" to clipboard
validate_kit: ^1.0.1 copied to clipboard

A zero-dependency, fluent form validation toolkit for Dart and Flutter. Chain rules for email, password, length, range, and custom logic.

example/lib/main.dart

import 'package:flutter/material.dart';

import 'screens/form_demo_screen.dart';

/// Entry point for the validate_kit example application.
void main() {
  runApp(const ValidateKitExampleApp());
}

/// Root widget of the example application.
class ValidateKitExampleApp extends StatelessWidget {
  /// Creates the example application.
  const ValidateKitExampleApp({super.key});

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'validate_kit',
      debugShowCheckedModeBanner: false,
      theme: ThemeData(
        useMaterial3: true,
        colorSchemeSeed: const Color(0xFF4F46E5),
      ),
      home: const FormDemoScreen(),
    );
  }
}
1
likes
160
points
75
downloads

Documentation

API reference

Publisher

verified publishereebrahimjoy.com

Weekly Downloads

A zero-dependency, fluent form validation toolkit for Dart and Flutter. Chain rules for email, password, length, range, and custom logic.

Repository (GitHub)
View/report issues

Topics

#validation #form #validator #flutter #dart

License

MIT (license)

More

Packages that depend on validate_kit