flutter_form_builder_fixed 4.2.2 copy "flutter_form_builder_fixed: ^4.2.2" to clipboard
flutter_form_builder_fixed: ^4.2.2 copied to clipboard

This package helps in creation of forms in Flutter by removing the boilerplate code, reusing validation, react to changes, and collect final user input. It's been patched to remove dependencies on out [...]

example/lib/main.dart

import 'package:flutter/cupertino.dart';
import 'package:flutter/material.dart';
import 'package:flutter_form_builder_fixed/flutter_form_builder.dart';
// import 'package:flutter_localizations/flutter_localizations.dart';

import 'home_page.dart';

void main() => runApp(MyApp());

class MyApp extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'Flutter FormBuilder Demo',
      theme: ThemeData(
        primarySwatch: Colors.blue,
        inputDecorationTheme: InputDecorationTheme(
          labelStyle: TextStyle(color: Colors.blueAccent),
        ),
      ),
      localizationsDelegates: [
        FormBuilderLocalizations.delegate,
        // GlobalMaterialLocalizations.delegate,
        // GlobalWidgetsLocalizations.delegate,
      ],
      supportedLocales: [
        Locale('en', ''),
        Locale('es', ''),
        Locale('fr', ''),
        Locale('ja', ''),
        Locale('pt', ''),
        Locale('sk', ''),
      ],
      home: HomePage(),
    );
  }
}
5
likes
30
points
29
downloads

Publisher

unverified uploader

Weekly Downloads

This package helps in creation of forms in Flutter by removing the boilerplate code, reusing validation, react to changes, and collect final user input. It's been patched to remove dependencies on outdated packages and widgets.

Homepage

License

BSD-2-Clause (license)

Dependencies

datetime_picker_formfield, dropdown_search, flutter, flutter_chips_input, flutter_colorpicker, flutter_datetime_picker, flutter_localizations, flutter_typeahead, intl, rating_bar, signature, validators

More

Packages that depend on flutter_form_builder_fixed