Skip to content

Commit

Permalink
Self review
Browse files Browse the repository at this point in the history
  • Loading branch information
Piinks committed Jan 22, 2024
1 parent 6ac7432 commit f4c7799
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
4 changes: 4 additions & 0 deletions packages/two_dimensional_scrollables/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 0.0.6

* Fixes an error in TableSpanDecoration when one or both axes are reversed.

## 0.0.5+2

* Fixes must_call_super lint warning from pending framework change.
Expand Down
2 changes: 1 addition & 1 deletion packages/two_dimensional_scrollables/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: two_dimensional_scrollables
description: Widgets that scroll using the two dimensional scrolling foundation.
version: 0.0.5+2
version: 0.0.6
repository: https://github.com/flutter/packages/tree/main/packages/two_dimensional_scrollables
issue_tracker: https://github.com/flutter/flutter/issues?q=is%3Aissue+is%3Aopen+label%3A%22p%3A+two_dimensional_scrollables%22+

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

import 'package:flutter/material.dart';
import 'package:flutter/widgets.dart';
import 'package:flutter_test/flutter_test.dart';
import 'package:two_dimensional_scrollables/two_dimensional_scrollables.dart';
Expand Down Expand Up @@ -200,7 +199,6 @@ void main() {
TableSpan buildSpan(bool isColumn) {
return TableSpan(
extent: const FixedTableSpanExtent(100),
// Do with background as well
foregroundDecoration: TableSpanDecoration(
color: isColumn ? const Color(0xFFE1BEE7) : const Color(0xFFBBDEFB),
),
Expand Down

0 comments on commit f4c7799

Please sign in to comment.