Additional form inputs fields with Cupertino style for flutter_form_builder package
- Cupertino fields with
FormBuilderField
logic - Only cupertino dependencies, without material imports
The currently supported fields include:
FormBuilderCupertinoCheckbox
- Single checkbox fieldFormBuilderCupertinoSegmentedControl
- Segmented control usingCupertinoSegmentedControl
FormBuilderCupertinoSlidingSegmentedControl
- Segmented control bar usingCupertinoSlidingSegmentedControl
FormBuilderCupertinoSlider
- For selection of a numerical value on a sliderFormBuilderCupertinoSwitch
- On/Off switch fieldFormBuilderCupertinoTextField
- A text field input
No specific setup required: only install the dependency and use :)
final _formKey = GlobalKey<FormBuilderState>();
FormBuilder(
key: _formKey,
child: FormBuilderCupertinoTextField(
name: 'text',
onChanged: (val) {
print(val); // Print the text value write into TextField
},
),
)
See pub.dev example tab or github code for more details
You have some ways to contribute to this packages
- Beginner: Reporting bugs or request new features
- Intermediate: Implement new features (from issues or not) and created pull requests
- Advanced: Join to organization like a member and help coding, manage issues, dicuss new features and other things
See contribution file for more details
You can question or search answers on Github discussion or on StackOverflow
Donate or become a sponsor of Flutter Form Builder Ecosystem
- Add more Cupertino fields
Take a look to our awesome ecosystem and all packages in there