Widget _buildFeedbackOnlyTitle(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 TDConfirmDialog( title: _dialogTitle, ); }, ); }, ); }