configure method

  1. @override
void configure()
override

Called by constructor, to configure this component.

Implementation

@override
void configure() {
  super.configure();

  var content = this.content!;

  content.style.display = 'none';
  content.style.textAlign = 'center';

  if (blockScrollTraversing) {
    blockScrollTraverse(content);
  }
}