flux_form 0.4.2 copy "flux_form: ^0.4.2" to clipboard
flux_form: ^0.4.2 copied to clipboard

A modular, type-safe form management library. Features input aggregation, sanitization pipelines, declarative validation, smart UI error handling, and State-management agnostic.

example/lib/main.dart

import 'package:example/features/login/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: 'FluxForm Demo',
      theme: ThemeData(
        primarySwatch: Colors.blue,
        inputDecorationTheme: const InputDecorationTheme(
          border: OutlineInputBorder(),
        ),
      ),
      home: const LoginPage(),
    );
  }
}
1
likes
160
points
491
downloads

Publisher

unverified uploader

Weekly Downloads

A modular, type-safe form management library. Features input aggregation, sanitization pipelines, declarative validation, smart UI error handling, and State-management agnostic.

Repository (GitHub)
View/report issues

Topics

#form #validation #state-management #sanitization #productivity

Documentation

API reference

License

MIT (license)

Dependencies

meta

More

Packages that depend on flux_form