Widget _buildImageTopOnlyTitle(BuildContext context) { return TDButton( text: '图片置顶-纯标题', size: TDButtonSize.large, type: TDButtonType.outline, theme: TDButtonTheme.primary, onTap: () { showGeneralDialog( context: context, pageBuilder: (BuildContext buildContext, Animation animation, Animation secondaryAnimation) { return TDImageDialog( image: _demoImage, title: _dialogTitle, ); }, ); }, ); }