lucid_validation 0.0.7  lucid_validation: ^0.0.7 copied 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.
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(),
    );
  }
}