Widget _fixedScrollTable(BuildContext context) { return TDTable( columns: [ TDTableCol(title: '标题', colKey: 'title1', width: 200), TDTableCol(title: '标题', colKey: 'title2', width: 160), TDTableCol(title: '标题', colKey: 'title3', width: 160), TDTableCol( title: '标题', colKey: 'title4', fixed: TDTableColFixed.right, cellBuilder: (BuildContext context) { return Row( mainAxisAlignment: MainAxisAlignment.spaceBetween, children: [ TDText( '修改', style: TextStyle( color: TDTheme.of(context).brandNormalColor, fontSize: 14, ), ), TDText( '通过', style: TextStyle( color: TDTheme.of(context).brandNormalColor, fontSize: 14, ), ), ], ); }, ), ], data: _getData2(), ); }