updateConfig method

  1. @override
void updateConfig(
  1. TextInputConfiguration configuration
)
override

Informs the EmbedTextInputControl about input configuration changes.

This method is called when the configuration of the attached input client has changed.

Implementation

@override
void updateConfig(TextInputConfiguration configuration) {
  this.configuration = configuration;
  if (visibleSoftLayout) {
    setState(() {});
  }
}