I am facing issue when I scroll the months tab in the date picker. Also the months are not being shown as three letters. Months are being shown as full length.
final List<DiagnosticsNode> information = <DiagnosticsNode>[
ErrorSummary('setState() or markNeedsBuild() called during build.'),
ErrorDescription(
'This ${widget.runtimeType} widget cannot be marked as needing to build because the framework '
'is already in the process of building widgets. A widget can be marked as '
'needing to be built during the build phase only if one of its ancestors '
'is currently building. This exception is allowed because the framework '
'builds parent widgets before children, which means a dirty descendant '
'will always be built. Otherwise, the framework might not visit this '
'widget during this build phase.',
),
describeElement('The widget on which setState() or markNeedsBuild() was called was'),
];
if (owner!._debugCurrentBuildTarget != null) {
information.add(owner!._debugCurrentBuildTarget!.describeWidget('The widget which was currently being built when the offending call was made was'));
}
throw FlutterError.fromParts(information);
}
Please let me know if there is any initialization error or if there is any error with the way I am coding.
I am facing issue when I scroll the months tab in the date picker. Also the months are not being shown as three letters. Months are being shown as full length.
This is the what is shown in debug
Please let me know if there is any initialization error or if there is any error with the way I am coding.