Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions tdesign-component/lib/src/components/table/t_table.dart
Original file line number Diff line number Diff line change
Expand Up @@ -670,11 +670,10 @@ class TTableState extends State<TTable> {
}

if (widget.height != null) {
// 有height时,整个数据区域做纵向滚动
dataBody = SingleChildScrollView(
controller: _scrollController,
physics: const BouncingScrollPhysics(),
child: dataRow,
child: IntrinsicHeight(child: dataRow),
);
} else {
dataBody = dataRow;
Expand Down
Loading