Open MrLepage opened 1 year ago
The documentation on the controller parameter says that If null, this widget will create its own [TextEditingController] but it is not the case.
If null, this widget will create its own [TextEditingController]
If a null controller is provided, it is force casted to its non-nullable type in the initState which lead to an Exception.
initState
The documentation on the controller parameter says that
If null, this widget will create its own [TextEditingController]
but it is not the case.If a null controller is provided, it is force casted to its non-nullable type in the
initState
which lead to an Exception.