Widget _buildImageTopNoTitle(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, content: _commonContent, ); }, ); }, ); }