Widget _buildConfirmNormal(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 TDAlertDialog( title: _dialogTitle, content: _commonContent, ); }, ); }, ); }