Hi, with new FlutterFlow update we have a problem with list. We pass a List of Integer from a JSON variable.
We are not using something of customized, just the FF blocks, like we had always done.
From yesterday we have this bug, is an error from new version or is an our problem?
child: FlutterFlowDropDown<int>(
multiSelectController:
_model.dropDownDaysValueController ??=
FormListFieldController<int>(
_model.dropDownDaysValue ??=
List<int>.from(
FFAppState().rruleJson != null
? getJsonField(
FFAppState().rruleJson,
r'''$.byweekday''',
true,
)
: ([0]) ?? [],
)),