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