rediflow_form_maker 0.1.0
rediflow_form_maker: ^0.1.0 copied to clipboard
Package for creating forms with pre-built components including text fields, dropdowns, image pickers, address fields, phone inputs, working hours selectors, and more.
Use this package as a library
Depend on it
Run this command:
With Flutter:
$ flutter pub add rediflow_form_maker
This will add a line like this to your package's pubspec.yaml (and run an implicit flutter pub get
):
dependencies:
rediflow_form_maker: ^0.1.0
Alternatively, your editor might support flutter pub get
. Check the docs for your editor to learn more.
Import it
Now in your Dart code, you can use:
import 'package:rediflow_form_maker/form_maker.dart';
import 'package:rediflow_form_maker/form_maker_library.dart';
import 'package:rediflow_form_maker/form_maker_new.dart';
import 'package:rediflow_form_maker/form_maker_old_backup.dart';
import 'package:rediflow_form_maker/models/address.dart';
import 'package:rediflow_form_maker/models/currencies.dart';
import 'package:rediflow_form_maker/models/user.dart';
import 'package:rediflow_form_maker/utils/constants.dart';
import 'package:rediflow_form_maker/utils/extensions.dart';
import 'package:rediflow_form_maker/utils/input_styles.dart';
import 'package:rediflow_form_maker/widgets/address_field.dart';
import 'package:rediflow_form_maker/widgets/buttons.dart';
import 'package:rediflow_form_maker/widgets/expandable_dropdown_textfield.dart';
import 'package:rediflow_form_maker/widgets/interactive_form_entries.dart';
import 'package:rediflow_form_maker/widgets/media_form_entries.dart';
import 'package:rediflow_form_maker/widgets/phone_field.dart';
import 'package:rediflow_form_maker/widgets/selection_form_entries.dart';
import 'package:rediflow_form_maker/widgets/text_form_entries.dart';
import 'package:rediflow_form_maker/widgets/working_hours_grid_days_rows.dart';
import 'package:rediflow_form_maker/widgets/working_hours_grid_hours_rows.dart';
import 'package:rediflow_form_maker/widgets/working_hours_models.dart';
import 'package:rediflow_form_maker/widgets/working_hours_selector.dart';