didCreated method

  1. @override
void didCreated()
inherited

已经完成创建

Implementation

@override
void didCreated() {
  super.didCreated();
  final title = (widget as XBPage).setTitle(this);
  if (title.isNotEmpty) {
    _lastHtmlTitle = getDocumentTitle();
    setDocumentTitle(title);
  }
  _pushNotifyAnimationTimer.once(
      duration:
          Duration(milliseconds: _castWidget.pushAnimationMilliseconds(this)),
      onTick: didFinishedPushAnimation);
}