Skip to content

Commit

Permalink
Add TableCalendar tests
Browse files Browse the repository at this point in the history
  • Loading branch information
aleksanderwozniak committed Nov 7, 2021
1 parent 641c297 commit d5641ee
Show file tree
Hide file tree
Showing 2 changed files with 1,292 additions and 0 deletions.
8 changes: 8 additions & 0 deletions test/common.dart
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
// Copyright 2019 Aleksander Woźniak
// SPDX-License-Identifier: Apache-2.0

import 'package:flutter/foundation.dart';

ValueKey<String> dateToKey(DateTime date, {String prefix = 'cell-'}) {
return ValueKey('$prefix${date.year}-${date.month}-${date.day}');
}
Loading

0 comments on commit d5641ee

Please sign in to comment.