go_form 0.2.3 copy "go_form: ^0.2.3" to clipboard
go_form: ^0.2.3 copied to clipboard

A generic controller for managing state and validation of input fields in Flutter. Supports initial value, validation, errors, and focus.

example/lib/main.dart

import 'package:flutter/material.dart';
import 'package:go_form_example/pages/home_page.dart';

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

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

  @override
  State<MyApp> createState() => _MyAppState();
}

class _MyAppState extends State<MyApp> {

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      home: HomePage(),
    );
  }
}
1
likes
130
points
401
downloads

Publisher

unverified uploader

Weekly Downloads

A generic controller for managing state and validation of input fields in Flutter. Supports initial value, validation, errors, and focus.

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (license)

Dependencies

flutter, flutter_web_plugins

More

Packages that depend on go_form