field_guard 1.0.5 copy "field_guard: ^1.0.5" to clipboard
field_guard: ^1.0.5 copied to clipboard

Field validation, formatting, and linked forms for Flutter apps.

example/lib/main.dart

import 'package:example/screens/home.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 Home(),
    );
  }
}
2
likes
140
pub points
74%
popularity

Publisher

verified publishercodewave.com

Field validation, formatting, and linked forms for Flutter apps.

Repository (GitHub)
View/report issues

Documentation

API reference

License

BSD-3-Clause (LICENSE)

Dependencies

flutter

More

Packages that depend on field_guard