- r - 以节省内存的方式增长 data.frame
- ruby-on-rails - ruby/ruby on rails 内存泄漏检测
- android - 无法解析导入android.support.v7.app
- UNIX 域套接字与共享内存(映射文件)
有什么方法可以减小 DataColumn 的大小吗?
我在 Flutter 中使用 DataTable 类
columns: <DataColumn> [
DataColumn(
label: Text("Column A",
style: Theme.of(context).textTheme.subtitle),
numeric: false,
onSort: (i, b) {},
tooltip: "Perticulars",
),
DataColumn(
label: Text("Column B",
style: Theme.of(context).textTheme.subtitle),
numeric: false,
onSort: (i, b) {},
tooltip: "As per Assessee",
),
DataColumn(
label:
Text("Column C", style: Theme.of(context).textTheme.subtitle),
numeric: false,
onSort: (i, b) {},
tooltip: "As per ITD",
)
],
最佳答案
我删除了一些关于排序的代码。您可以更改 _tablePadding
和 _columnSpacing
以减小大小:
import 'dart:math' as math;
import 'package:flutter/material.dart';
import 'package:flutter/foundation.dart';
class CustomDataTable extends DataTable {
CustomDataTable({
Key key,
@required this.columns,
this.sortColumnIndex,
this.sortAscending = true,
this.onSelectAll,
@required this.rows,
}) :
assert(columns != null),
assert(columns.isNotEmpty),
assert(sortColumnIndex == null || (sortColumnIndex >= 0 && sortColumnIndex < columns.length)),
assert(sortAscending != null),
assert(rows != null),
assert(!rows.any((DataRow row) => row.cells.length != columns.length)),
_onlyTextColumn = _initOnlyTextColumn(columns),
super(
key: key,
columns: columns,
sortColumnIndex: sortColumnIndex,
sortAscending: sortAscending,
onSelectAll: onSelectAll,
rows: rows);
final List<DataColumn> columns;
final int sortColumnIndex;
final bool sortAscending;
final ValueSetter<bool> onSelectAll;
final List<DataRow> rows;
static const double _headingRowHeight = 56.0;
static const double _dataRowHeight = 48.0;
static const double _tablePadding = 18.0;
static const double _columnSpacing = 56.0;
static const double _headingFontSize = 12.0;
static const Duration _sortArrowAnimationDuration = Duration(milliseconds: 150);
static const Color _grey100Opacity = Color(0x0A000000); // Grey 100 as opacity instead of solid color
static const Color _grey300Opacity = Color(0x1E000000); // Dark theme variant is just a guess.
final int _onlyTextColumn;
static int _initOnlyTextColumn(List<DataColumn> columns) {
int result;
for (int index = 0; index < columns.length; index += 1) {
final DataColumn column = columns[index];
if (!column.numeric) {
if (result != null)
return null;
result = index;
}
}
return result;
}
bool get _debugInteractive {
return columns.any((DataColumn column) => false)
|| rows.any((DataRow row) => false);
}
static final LocalKey _headingRowKey = UniqueKey();
void _handleSelectAll(bool checked) {
if (onSelectAll != null) {
onSelectAll(checked);
} else {
for (DataRow row in rows) {
if ((row.onSelectChanged != null) && (row.selected != checked))
row.onSelectChanged(checked);
}
}
}
Widget _buildCheckbox({
Color color,
bool checked,
VoidCallback onRowTap,
ValueChanged<bool> onCheckboxChanged,
}) {
Widget contents = Semantics(
container: true,
child: Padding(
padding: const EdgeInsetsDirectional.only(start: _tablePadding, end: _tablePadding / 2.0),
child: Center(
child: Checkbox(
activeColor: color,
value: checked,
onChanged: onCheckboxChanged,
),
),
),
);
if (onRowTap != null) {
contents = TableRowInkWell(
onTap: onRowTap,
child: contents,
);
}
return TableCell(
verticalAlignment: TableCellVerticalAlignment.fill,
child: contents,
);
}
Widget _buildHeadingCell({
BuildContext context,
EdgeInsetsGeometry padding,
Widget label,
String tooltip,
bool numeric,
VoidCallback onSort,
bool sorted,
bool ascending,
}) {
label = Container(
padding: padding,
height: _headingRowHeight,
alignment: numeric ? Alignment.centerRight : AlignmentDirectional.centerStart,
child: AnimatedDefaultTextStyle(
style: TextStyle(
// TODO(ianh): font family should match Theme; see https://github.com/flutter/flutter/issues/3116
fontWeight: FontWeight.w500,
fontSize: _headingFontSize,
height: math.min(1.0, _headingRowHeight / _headingFontSize),
color: (Theme.of(context).brightness == Brightness.light)
? ((onSort != null && sorted) ? Colors.black87 : Colors.black54)
: ((onSort != null && sorted) ? Colors.white : Colors.white70),
),
softWrap: false,
duration: _sortArrowAnimationDuration,
child: label,
),
);
if (tooltip != null) {
label = Tooltip(
message: tooltip,
child: label,
);
}
if (onSort != null) {
label = InkWell(
onTap: onSort,
child: label,
);
}
return label;
}
Widget _buildDataCell({
BuildContext context,
EdgeInsetsGeometry padding,
Widget label,
bool numeric,
bool placeholder,
bool showEditIcon,
VoidCallback onTap,
VoidCallback onSelectChanged,
}) {
final bool isLightTheme = Theme.of(context).brightness == Brightness.light;
if (showEditIcon) {
const Widget icon = Icon(Icons.edit, size: 18.0);
label = Expanded(child: label);
label = Row(
textDirection: numeric ? TextDirection.rtl : null,
children: <Widget>[ label, icon ],
);
}
label = Container(
padding: padding,
height: _dataRowHeight,
alignment: numeric ? Alignment.centerRight : AlignmentDirectional.centerStart,
child: DefaultTextStyle(
style: TextStyle(
// TODO(ianh): font family should be Roboto; see https://github.com/flutter/flutter/issues/3116
fontSize: 13.0,
color: isLightTheme
? (placeholder ? Colors.black38 : Colors.black87)
: (placeholder ? Colors.white30 : Colors.white70),
),
child: IconTheme.merge(
data: IconThemeData(
color: isLightTheme ? Colors.black54 : Colors.white70,
),
child: DropdownButtonHideUnderline(child: label),
),
),
);
if (onTap != null) {
label = InkWell(
onTap: onTap,
child: label,
);
} else if (onSelectChanged != null) {
label = TableRowInkWell(
onTap: onSelectChanged,
child: label,
);
}
return label;
}
@override
Widget build(BuildContext context) {
assert(!_debugInteractive || debugCheckHasMaterial(context));
final ThemeData theme = Theme.of(context);
final BoxDecoration _kSelectedDecoration = BoxDecoration(
border: Border(bottom: Divider.createBorderSide(context, width: 1.0)),
// The backgroundColor has to be transparent so you can see the ink on the material
color: (Theme.of(context).brightness == Brightness.light) ? _grey100Opacity : _grey300Opacity,
);
final BoxDecoration _kUnselectedDecoration = BoxDecoration(
border: Border(bottom: Divider.createBorderSide(context, width: 1.0)),
);
final bool showCheckboxColumn = rows.any((DataRow row) => row.onSelectChanged != null);
final bool allChecked = showCheckboxColumn && !rows.any((DataRow row) => row.onSelectChanged != null && !row.selected);
final List<TableColumnWidth> tableColumns = List<TableColumnWidth>(columns.length + (showCheckboxColumn ? 1 : 0));
final List<TableRow> tableRows = List<TableRow>.generate(
rows.length + 1, // the +1 is for the header row
(int index) {
return TableRow(
key: index == 0 ? _headingRowKey : rows[index - 1].key,
decoration: index > 0 && rows[index - 1].selected ? _kSelectedDecoration
: _kUnselectedDecoration,
children: List<Widget>(tableColumns.length),
);
},
);
int rowIndex;
int displayColumnIndex = 0;
if (showCheckboxColumn) {
tableColumns[0] = const FixedColumnWidth(_tablePadding + Checkbox.width + _tablePadding / 2.0);
tableRows[0].children[0] = _buildCheckbox(
color: theme.accentColor,
checked: allChecked,
onCheckboxChanged: _handleSelectAll,
);
rowIndex = 1;
for (DataRow row in rows) {
tableRows[rowIndex].children[0] = _buildCheckbox(
color: theme.accentColor,
checked: row.selected,
onRowTap: () => row.onSelectChanged != null ? row.onSelectChanged(!row.selected) : null ,
onCheckboxChanged: row.onSelectChanged,
);
rowIndex += 1;
}
displayColumnIndex += 1;
}
for (int dataColumnIndex = 0; dataColumnIndex < columns.length; dataColumnIndex += 1) {
final DataColumn column = columns[dataColumnIndex];
final EdgeInsetsDirectional padding = EdgeInsetsDirectional.only(
start: dataColumnIndex == 0 ? showCheckboxColumn ? _tablePadding / 2.0 : _tablePadding : _columnSpacing / 2.0,
end: dataColumnIndex == columns.length - 1 ? _tablePadding : _columnSpacing / 2.0,
);
if (dataColumnIndex == _onlyTextColumn) {
tableColumns[displayColumnIndex] = const IntrinsicColumnWidth(flex: 1.0);
} else {
tableColumns[displayColumnIndex] = const IntrinsicColumnWidth();
}
tableRows[0].children[displayColumnIndex] = _buildHeadingCell(
context: context,
padding: padding,
label: column.label,
tooltip: column.tooltip,
numeric: column.numeric,
onSort: () => column.onSort != null ? column.onSort(dataColumnIndex, sortColumnIndex == dataColumnIndex ? !sortAscending : true) : null,
sorted: dataColumnIndex == sortColumnIndex,
ascending: sortAscending,
);
rowIndex = 1;
for (DataRow row in rows) {
final DataCell cell = row.cells[dataColumnIndex];
tableRows[rowIndex].children[displayColumnIndex] = _buildDataCell(
context: context,
padding: padding,
label: cell.child,
numeric: column.numeric,
placeholder: cell.placeholder,
showEditIcon: cell.showEditIcon,
onTap: cell.onTap,
onSelectChanged: () => row.onSelectChanged != null ? row.onSelectChanged(!row.selected) : null,
);
rowIndex += 1;
}
displayColumnIndex += 1;
}
return Table(
columnWidths: tableColumns.asMap(),
children: tableRows,
);
}
}
关于datatable - Flutter:有没有办法在 "fix size"中获取 DataColumn 的/"reduce size" "DataTable"?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55417944/
我正在尝试为 DataColumn 设置默认值。如何为下面的代码设置 DataColumn (column3) 的默认值 DataTable dt = new DataTable(); dt.Colu
给出这样的表达式 DataTable1.Columns.Add("value", typeof(double), "rate * loan_amt"); 在一个包含 10000 行的数据表中,所有行
如何在循环行时替换列值? 我的 DataTable 有两列,我想替换每一行第一列的值。我无法获取或设置列值。到目前为止,我只管理访问 DefaultValue 和 ColumnName 等。 即使创建
我有一个数据库列,我只需要检查其中是否有值。 DataTable dt = masterDataSet.Tables["Settings"]; DataColumn S
DataColumn.Expression 可以使用扩展方法来支持替换功能吗? 如果是,是否有可用的示例代码? 谢谢。 最佳答案 Probably not in the way you're thin
我正在大量使用字典来解耦一些(高度耦合的)代码。以下是与我的问题相关的内容: //Output table System.Data.DataTable dtOutput = new System.Da
将 DataColumn 值转换为字符串数组时的最佳做法? [编辑]要将所有 DataTable 行的特定 DataColumn 的所有值都转换为字符串数组? 最佳答案 如果我理解您的目标,您想要指定
有没有比这更好的方法来检查 DataTable 中的 DataColumn 是否为数字(来自 SQL Server 数据库)? Database db = DatabaseFactory.Crea
如何获取 DataColumn 对象的原始数据格式(在数据库中)? 我有来自 DataTable 的 DataColumn 对象,它是打开 DBCommand SQL“选择”查询的结果的一部分。 如何
我有一个 DataTable 对象,可以访问它的 Columns 集合。对于此集合中的每一项,我需要确定列的类型并将其作为以下字符串之一返回:'string' 'number' 'boolean' '
我正在编写一些基于大量动态数据创建新的 Sqlite 数据库的 C# 代码,我卡在了一个部分,它试图确定是否需要为即将到来的新数据创建或更改列中。 通过获取 DataTable 并查看 DataCol
我有一个来自 SQL 请求的数据表。虽然我实际上是在使用 OLEDB 处理表,但即使我从 SQL 服务器获取表,我也会遇到同样的问题。 如果我填充数据表然后查询 DataColumns - 他们都说
我正在创建一个报告组件,该组件采用 IEnumerable 输入并执行一些转换和聚合,并返回一个具有动态列数的新 IEnumerable。我为此使用 ADO.NET,因为创建具有适当列的 DataTa
我以编程方式将一列分配给 DataTable,如下所示: myDataTable.Columns.Add(myDataColumn); 有没有办法以编程方式设置列的宽度/大小? 最佳答案 Column
我有密码 foreach (DataColumn dataTableCol in this.dataTable.Columns) { bool
我正在读取 CSV 文件,其中第一行是标题行。读取所有列名并将其放入表中,如下所示: foreach (var item in lines[0].Split(';').Where(s => !stri
我正在尝试创建一个 DataTable 并将其绑定(bind)到 DataGridView。它有效,但我无法通过 Caption 属性设置列标题。它使用 ColumnName(“City”)来显示标题
如何将设置为 string 类型的 GUID DataColumn 转换为类型为 Guid 的 GUID DataColumn?源数据中的一列类型错误,我无法在那里更改它。 最佳答案 一旦数据表填充了
我可以将 DataCell 置于 DataRow 的中心,但是对于 DataColumn 标签,您如何做到这一点? 我希望第一个 DataColumn 左对齐,其余居中。将标签包裹在中心小部件中不会生
我有一个包含 xml 列的 SQL Server 数据表。我使用 DataTable(SqlDataAdapter 类的 Fill 方法)运行选择查询。执行后该列的类型为string。 我想知道如何根
我是一名优秀的程序员,十分优秀!