stateful_form 0.5.8 copy "stateful_form: ^0.5.8" to clipboard
stateful_form: ^0.5.8 copied to clipboard

A Flutter package to simplify form validation and state management.

example/lib/main.dart

import 'package:flutter/material.dart';

import 'example1/example1.dart';
import 'example2/example2.dart';

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

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

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'StatefulForm',
      theme: ThemeData(
        primarySwatch: Colors.blue,
      ),
      home: const MyHomePage(),
    );
  }
}

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

  @override
  Widget build(BuildContext context) {
    return Scaffold(
      appBar: AppBar(title: const Text('Examples')),
      body: ListView(
        children: [
          ListTile(
            title: const Text('Example 1'),
            subtitle: const Text('Simple example'),
            onTap: () {
              _navigateTo(context, const Example1());
            },
          ),
          const Divider(height: 0),
          ListTile(
            title: const Text('Example 2'),
            subtitle: const Text('Work with flutter_bloc'),
            onTap: () {
              _navigateTo(context, const Example2());
            },
          ),
        ],
      ),
    );
  }

  void _navigateTo(BuildContext context, Widget page) {
    Navigator.push(
      context,
      MaterialPageRoute<void>(
        builder: (BuildContext context) => page,
      ),
    );
  }
}
0
likes
160
pub points
30%
popularity

Publisher

verified publisherhanlogy.com

A Flutter package to simplify form validation and state management.

Repository (GitHub)
View/report issues

Documentation

API reference

License

BSD-3-Clause (license)

Dependencies

flutter

More

Packages that depend on stateful_form