lucid_validation 0.0.1
lucid_validation: ^0.0.1 copied to clipboard
A 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(),
);
}
}