Widget _buildInputNoContent(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 TDInputDialog( textEditingController: TextEditingController(), title: _dialogTitle, hintText: _inputHint, ); }, ); }, ); }