Skip to main content
Filter by
Sorted by
Tagged with
0 votes
1 answer
46 views

On Samsung devices, only when using the default Samsung Keyboard, when moving between Form Fields in flutter using FormBuilderTextField and FormBuilder, the keyboard's language automatically switches ...
Emek Cohen's user avatar
0 votes
0 answers
38 views

I have implemented Auto-Scroll to the first error causing field in flutter form. Code Link. I had to use renderObject approach in few cases as scrollable.ensureVisible is not working. Note that I am ...
VENKAT RUTHVIK SAI KONDA's user avatar
0 votes
1 answer
121 views

I using package flutter_form_builder for forms and not getting how to customize these: options: const [ FormBuilderChipOption(value: 'Low', child: Text('Low')), FormBuilderChipOption(...
Dominik's user avatar
  • 51
0 votes
2 answers
58 views

Is it possible to remove the animated tick that appears with FormBuilderChoiceChip using the flutter_form_builder package? I can't see any properties to allow this, and wonder if there is a work ...
Kdon's user avatar
  • 1,317
0 votes
1 answer
115 views

I am trying to use a Map(String,String) to satisfy the FormBuilderChipOption. The code I have tried is as follows: options: languageOptionsMap((city,letter) => FormBuilderChipOption( ...
user avatar
0 votes
2 answers
193 views

I am trying to remove the vertical padding inside the dropdown and to change the border radius of the highlight of the selected item. I am using the flutter_form_builder package. Here's my current ...
Angela Boyadjian's user avatar
0 votes
1 answer
70 views

I have forked the Flutter ListTile and created my own custom list tile widget. Inside this custom list tile, I am using a checkbox from the flutter_form_builder package, which internally uses ...
Omair's user avatar
  • 17
0 votes
1 answer
63 views

this is my flutter sign in widget, but the issue is, the moment i declare the form keys, the keyboard for every text field keeps going out of focus, how to resolve this, please help class ...
Mysha Nahiyan Shemontee's user avatar
0 votes
1 answer
56 views

I want to run a post process hook after my stateful widget loads. More concretely, I am building a form using flutter form builder. The form is sometimes prefilled, and if the values are valid I want ...
user2232305's user avatar
0 votes
1 answer
815 views

I am experimenting with the code for Flutter Form Builder's dynamic forms, which can be found here. (For context, a dynamic form lets you add and remove form fields at will.) In the original code, ...
mtao's user avatar
  • 1
1 vote
1 answer
555 views

I need to enable a FormBuilderTextField based on the value the user selects in a FormBuilderCheckboxGroup. This is an example: import 'package:flutter/material.dart'; import 'package:...
kalibear's user avatar
  • 143
3 votes
0 answers
238 views

How do I get an array of objects using flutter_form_builder and ListView? the object: { items: [ { id: xx, name: xxxx } ] } What I have tried: return FormBuilder( key: ...
Hardyson Arthy's user avatar
0 votes
1 answer
1k views

I'm building a flutter app with a number of drop down lists using flutter_form_builder. On occasion I get an error saying that the initial value is not in the drop down list. This could happen for ...
markhorrocks's user avatar
  • 1,610
1 vote
0 answers
264 views

My app has a long form, so I want to save its data in the case that the Android OS kills my app when it's in the background (e.g. when picking an image using image_picker). My form is implemented ...
Szymon Głowacki's user avatar
0 votes
1 answer
547 views

I'm facing an issue with the FormBuilderTextField widget in Flutter. I want to enable copy-paste interaction within the FormBuilderTextField when I long-press it, but it doesn't seem to work as ...
Arjun Ranjith's user avatar
0 votes
1 answer
661 views

I am getting the following error from flutter: lib/screens/create_account_screen.dart:30:30: Error: The getter 'FormBuilderValidators' isn't defined for the class '_CreateAccountScreenState'. - '...
thebiggestlebowski's user avatar
2 votes
2 answers
1k views

So I'm trying to create a form, which shall validate that all field is filled before submitting, but it is skipping the validation of my IntlPhoneField. Here's the snippet: import 'package:flutter/...
Newbie's user avatar
  • 31
1 vote
1 answer
2k views

I'm using Flutter Form Builder package and it seems I can't change the color directly using the FormBuilderDateTimePicker class, so I used the datePickerTheme in the ThemeData, datePickerTheme:...
user16711828's user avatar
0 votes
0 answers
35 views

I have a pretty basic form widget inside a scaffold app, with a single text field. The form uses the flutter_form_builder library. // Define a corresponding State class. // This class holds data ...
phtrivier's user avatar
  • 13.5k
0 votes
1 answer
669 views

Unregister Field from State 7.7.0 version: I am getting _fields.containsKey(name) after removing Text Field from a List I have dynamic count of Cells (each cell contains one TextField) in my Scroll ...
A. Amini's user avatar
  • 571
0 votes
3 answers
655 views

Im a new flutter developer, so please can u help me with this problem. The problem is when validator in TextFieldForm "works" it adds text that user did something wrong. And my Container is ...
Umyt King's user avatar
0 votes
1 answer
259 views

Bellow is Form to add new document.I wants to reuse and call same form for edit document operation also.For both operations one or two fields can be changed but i wants to call same form on onPressed()...
Minal Suryawanshi's user avatar
0 votes
0 answers
121 views

Is there anyway to have a multi-column form using Form Builder package, or any other alternative. I dont want to use native forms as it may not be a cleaner option to display 10-20 questions. ...
GeekzSG's user avatar
  • 973
0 votes
1 answer
191 views

I am doing form saving with flutter 3.3.6 the code in the build method is: TextFormField( decoration: const InputDecoration(labelText: 'Image URL'), ...
Mohammed Abualnasr's user avatar
0 votes
1 answer
503 views

I am trying to build a multi-page registration screen with each page having a Form displayed within a PageView for each and smooth sliding effect. My only trouble is when the keyboard is displayed, ...
Akif Patel's user avatar
0 votes
1 answer
784 views

I am trying to create a custom TextFormField which can switch between Email / Phone / ID on Suffix icon click, but I don't know how to validate it based on its current state (Email / Phone / ID). I am ...
Ragul Raj's user avatar
2 votes
1 answer
790 views

I have a FormBuilderTextField that I want to toggle it's enabled property based on another FormBuilderTextField value length. I know there are ways with TextEditingController, but I want to try it ...
Dynozilla's user avatar
2 votes
0 answers
106 views

The idea is simply to retreive a list of data from the backend, and the user has to submit quantities (it's like calling purchase order quotation from back end then choose delivried quantites) as ...
Youssef Idraiss's user avatar
0 votes
1 answer
898 views

I'm following the example here to build a form FormBuilderTextField( autovalidateMode: AutovalidateMode.always, name: 'age', ...
user6123723's user avatar
  • 11.3k
0 votes
1 answer
421 views

I want to change this text to my custom text in all form builder validators in the app. enter image description here
Mohamed Elkilany's user avatar
0 votes
1 answer
716 views

I'm creating a mobile application in which I want to use a dropdown to select a "note type" (to create a new note) and based on the selection from the dropdown I want to show a specific form ...
J Moss's user avatar
  • 3
1 vote
2 answers
188 views

I am using form field validator, I think it will be the same if using normal TextField, and I have form field like this TextFormField( onChanged: (val) => selectedEmail = val, ...
Agung's user avatar
  • 14k
0 votes
1 answer
362 views

I am aiming for my flutter page to have an 'edit' information button when the page is first loaded, whereby when this button is clicked, a Form widget appears for the user to update or 'edit' their ...
Mi_cal2002's user avatar
1 vote
0 answers
248 views

I have one line of code to create a form to add a product on flutter. and I made very long code for the label and text field. Can you explain the method to minimize the lines of code and make the ...
msafeiyahya96's user avatar
1 vote
1 answer
42 views

I have a task to solve a bug for an application form update on an application that uses Flutter when it is built. However, this is my first time using Flutter, and the program structure is a bit ...
msafeiyahya96's user avatar
1 vote
2 answers
2k views

I have to make one application which take so many user input , that's why i use so many Textfiled in my code for taking user input. An Textfiled validation time I simply use List of Global keys and it'...
Dhruv Mavani's user avatar
0 votes
1 answer
1k views

After entering data and try to register, the data is not updating in database. child: TextButton( onPressed: () { final form = _formKey.currentState; if (form != ...
user avatar
1 vote
2 answers
836 views

Hi everyone I have some troubles with Flutter FormBuilderDateTimePicker My problem is that when I set the value manually (with a keyboard not using graphical draggable 'arrows' offered by the widget) ...
Kostyuk Rostyslav's user avatar
0 votes
1 answer
740 views

I am having a multiple FormBuilder dropdown in my flutter app. all of them are dependent dropdown. i want to implement something like this: the first of the main parent dropdown value should be auto ...
Digvijay Zite's user avatar
2 votes
3 answers
1k views

I am facing issue when I try to run app on emulator or during creating apk file on flutter project. I tried to delete project, pub get, pub cache clean, deleted flutter folder and installed again. ...
Elvin Mammadov's user avatar
1 vote
0 answers
1k views

Good day, I added these permissions to my Info.plist for ios <key>NSPhotoLibraryUsageDescription</key> <string>Upload images for screen background</string> <key>...
Tyrel Smith's user avatar
1 vote
1 answer
1k views

import 'package:flutter/material.dart'; import 'package:sumanthk07/utilities/routes.dart'; class LoginPage extends StatefulWidget { const LoginPage({Key? key}) : super(key: key); @override State<...
SUMANTH K's user avatar
0 votes
1 answer
557 views

I have a alertdialog in my application which has come form elements init. The form is wrapped with a column widget. How ever when the keyboard opens up it throw bottom overflow issue. To solve that i ...
Febin Johnson's user avatar
8 votes
2 answers
7k views

How can I get the Flutter FormBuilderDateTimePicker to only show the date? The code below produces a time picker after the date picker closes and the output is: flutter: 2022-04-02 00:00:00.000 I ...
markhorrocks's user avatar
  • 1,610
0 votes
1 answer
504 views

I am using flutter_form_builder in my project and want to create and load the formbuilderfieldoptions when I load the form. My strategy would be to query the database and create the options on the ...
markhorrocks's user avatar
  • 1,610
1 vote
1 answer
3k views

I am using Flutter Form Builder with a FormBuilderRadioGroup but I can't figure out how to style the options which are always black. Changing the app's primary swatch makes no difference. The color ...
markhorrocks's user avatar
  • 1,610
0 votes
0 answers
517 views

In a flutter app I using flutter_form_builder to implement a FormBuilderRadioGroup in a update form. I have an integer field for user role and a boolean field user active which I want to set in a form....
markhorrocks's user avatar
  • 1,610
2 votes
2 answers
5k views

I'm trying to use flutter_form_builder: ^7.1.0 with form_builder_validators to create a form, but a getting undefined errors at onChanged: _onChanged, and validator: FormBuilderValidators.compose. I ...
markhorrocks's user avatar
  • 1,610
2 votes
1 answer
3k views

Please I am using formio to create a form, within the form two fields (currency) are to be added and a total is to be generated in a field called total. I have tried adding this custom javascript code ...
Abiola Aribisala's user avatar
0 votes
1 answer
578 views

im using flutter_form_builder to create a form. The problem is, that when im clicking a Form checkbox, the checkbox widget moves to the top of the screen. The checkbox is contained in another stateful ...
Donatic's user avatar
  • 323