dynamic_form 0.3.7+6 copy "dynamic_form: ^0.3.7+6" to clipboard
dynamic_form: ^0.3.7+6 copied to clipboard

outdated

generate your form with easier way, Pre-existing forms, fields ,customize your form in runtime

example/lib/main.dart

import 'package:dynamic_form/dynamic_form.dart';
import 'package:flutter/material.dart';
import 'package:formdynamic/login_page.dart';

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

class MyApp extends StatefulWidget {
  @override
  State<StatefulWidget> createState() => _MyAppState();
  // This widget is the root of your application.

}
class _MyAppState extends State<MyApp> with TickerProviderStateMixin{
  TabController tabController;
  @override
  void initState() {
    super.initState();
    tabController=TabController(length: 2,initialIndex: 0,vsync: this);
  }
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'Dynamic Form Demo',
      theme: ThemeData(
        primarySwatch: Colors.blue,
        backgroundColor: Colors.grey[300],
      ),
      home: Scaffold(
        appBar: AppBar(
          title: Text("Demo"),
          bottom: TabBar(
            controller: tabController,
            tabs: <Widget>[
              GestureDetector(
                onTap: (){
                  tabController.index=0;
                },
                child: Text("Basic Example"),
              ),
              GestureDetector(
                onTap: (){
                  tabController.index=1;
                },
                child: Text("Login form example"),
              ),
            ],
          ),
        ),

        body: TabBarView(
          controller: tabController,
          children: <Widget>[
            MyHomePage(),
            LoginPage(),
          ],
        ),
      ),
    );
  }
}

class MyHomePage extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    GlobalKey<SimpleDynamicFormState> _globalKey =
        GlobalKey<SimpleDynamicFormState>();
    return SingleChildScrollView(
      child: Column(
        children: <Widget>[
          SimpleDynamicForm(
            key: _globalKey,
            groupElements: [
              GroupElement(
                margin: EdgeInsets.only(bottom: 5.0),
                directionGroup: DirectionGroup.Horizontal,
                sizeElements: [0.3],
                textElements: [
                  TextElement(
                      initValue: "",
                      label: "first name",
                      hint: "first name",
                      validator: (v) {
                        if (v.isEmpty) {
                          return "err";
                        }
                        return null;
                      }),
                  TextElement(label: "last name"),
                ],
              ),
              GroupElement(
                directionGroup: DirectionGroup.Vertical,
                textElements: [
                  NumberElement(
                      label: "phone",
                      validator: (v) {
                        if (v.isEmpty) {
                          return "err";
                        }
                        return null;
                      }),
                  EmailElement(
                    //label: "",
                    initValue: "example@mail.com",
                    isRequired: true,
                    decorationElement: RoundedDecorationElement(
                        radius: BorderRadius.all(Radius.circular(0.0)),
                        filledColor: Colors.white),
                  ),
                  PasswordElement(
                    minLength: 8,
                    hasDigits: false,
                    hasSpecialCharacter: true,
                    hasUppercase: true,
                    isRequired: true,
                    errors: PasswordError(
                        minLengthErrorMsg:
                            "Password must include at least 8 characters"),
                  ),
                ],
              ),
              GroupElement(
                directionGroup: DirectionGroup.Vertical,
                textElements: [
                  CountryElement(
                    label: "Pays",
                    labelModalSheet: "Pays",
                    labelSearchModalSheet: "search",
                    initValue: "",
                    countryTextResult: CountryTextResult.countryCode,
                    showFlag: false,
                  ),
                ],
              ),
            ],
          ),
          RaisedButton(
            onPressed: () {
              print(_globalKey.currentState.validate());
              print(_globalKey.currentState.recuperateAllValues());
            },
            child: Text("Validate"),
          )
        ],
      ),
    );
  }
}
19
likes
0
pub points
62%
popularity

Publisher

unverified uploader

generate your form with easier way, Pre-existing forms, fields ,customize your form in runtime

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

flutter, flutter_svg

More

Packages that depend on dynamic_form