lucid_validation 0.0.7 copy "lucid_validation: ^0.0.7" to clipboard
lucid_validation: ^0.0.7 copied to clipboard

A Dart/Flutter package for building strongly typed validation rules inspired by FluentValidation and created by the Flutterando community.

example/lib/main.dart

import 'package:example/presentation/login_page/login_page.dart';
import 'package:flutter/material.dart';

void main() {
  runApp(const MyApp());
}

class MyApp extends StatelessWidget {
  const MyApp({super.key});

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'Flutter Demo',
      theme: ThemeData(
        colorScheme: ColorScheme.fromSeed(seedColor: Colors.deepPurple),
        useMaterial3: true,
      ),
      home: const LoginPage(),
    );
  }
}
55
likes
150
points
1.7k
downloads

Publisher

verified publisherflutterando.com.br

Weekly Downloads

A Dart/Flutter package for building strongly typed validation rules inspired by FluentValidation and created by the Flutterando community.

Homepage
Repository (GitHub)

Documentation

API reference

License

MIT (license)

More

Packages that depend on lucid_validation