flutter_form_builder 4.0.0-alpha.8 copy "flutter_form_builder: ^4.0.0-alpha.8" to clipboard
flutter_form_builder: ^4.0.0-alpha.8 copied to clipboard

outdated

Package to build Material Form with fields like TextField, DropDown, Switches etc. with ability to create custom FormFields and composability and reuse validation functions.

example/lib/main.dart

import 'package:flutter/cupertino.dart';
import 'package:flutter/material.dart';
import 'package:flutter_form_builder/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.purple),
        ),
      ),
      localizationsDelegates: [
        FormBuilderLocalizations.delegate,
        GlobalMaterialLocalizations.delegate,
        GlobalWidgetsLocalizations.delegate,
      ],
      supportedLocales: [Locale('en', ''), Locale('es', '')],
      home: HomePage(),
    );
  }
}
2.6k
likes
0
points
123k
downloads

Publisher

verified publisherflutterformbuilderecosystem.com

Weekly Downloads

Package to build Material Form with fields like TextField, DropDown, Switches etc. with ability to create custom FormFields and composability and reuse validation functions.

Repository (GitHub)
View/report issues

License

unknown (license)

Dependencies

country_code_picker, country_pickers, date_range_picker, datetime_picker_formfield, flutter, flutter_chips_input, flutter_colorpicker, flutter_datetime_picker, flutter_localizations, flutter_touch_spin, flutter_typeahead, image_picker, intl, phone_number, rating_bar, signature, validators

More

Packages that depend on flutter_form_builder