wip: add notificator util.
This commit is contained in:
@@ -17,7 +17,7 @@ typedef DataColumnSortCallback = void Function(int columnIndex, bool ascending);
|
||||
///
|
||||
/// One column configuration must be provided for each column to
|
||||
/// display in the table. The list of [DataColumn] objects is passed
|
||||
/// as the `columns` argument to the [new DataTable] constructor.
|
||||
/// as the `columns` argument to the [DataTable] constructor.
|
||||
@immutable
|
||||
class DDataColumn {
|
||||
/// Creates the configuration for a column of a [DataTable].
|
||||
@@ -73,7 +73,7 @@ class DDataColumn {
|
||||
///
|
||||
/// One row configuration must be provided for each row to
|
||||
/// display in the table. The list of [DataRow] objects is passed
|
||||
/// as the `rows` argument to the [new DataTable] constructor.
|
||||
/// as the `rows` argument to the [DataTable] constructor.
|
||||
///
|
||||
/// The data for this row of the table is provided in the [cells]
|
||||
/// property of the [DataRow] object.
|
||||
@@ -995,7 +995,7 @@ class _DDataTableState extends State<DDataTable> {
|
||||
|
||||
List<Widget> _skickyHeaders = [];
|
||||
var _headerBackgroundHSLColor = HSLColor.fromColor(widget.headerBackgroundColor);
|
||||
HSLColor.fromColor(widget.headerBackgroundColor).withSaturation(.1).toColor();
|
||||
// HSLColor.fromColor(widget.headerBackgroundColor).withSaturation(.1).toColor();
|
||||
if (_headersRect != null && _headersRect!.length > 0) {
|
||||
for (var i = 0; i < _headersRect!.length; i++) {
|
||||
_skickyHeaders.add(Positioned(
|
||||
|
||||
Reference in New Issue
Block a user