formaster 0.3.0 copy "formaster: ^0.3.0" to clipboard
formaster: ^0.3.0 copied to clipboard

Kit for create complex form

example/lib/main.dart

import 'package:example/form.dart';
import 'package:flutter/material.dart';

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

class MyApp extends StatelessWidget {
  const MyApp({Key? key}) : super(key: key);

  // This widget is the root of your application.
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'Flutter Demo',
      theme: ThemeData(
        inputDecorationTheme: const InputDecorationTheme(
            border: OutlineInputBorder(),
            floatingLabelStyle: TextStyle(color: Colors.black54)),
        primarySwatch: Colors.blue,
      ),
      home: const ExampleScreen(),
    );
  }
}