Skip to content

Commit c04ecc9

Browse files
committed
Refactor dropdowns and code format
1 parent ef9a4b8 commit c04ecc9

File tree

3 files changed

+3
-5
lines changed

3 files changed

+3
-5
lines changed

lib/src/api/models/cloud_database_queries/query_filter.dart

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@ import 'where_query_filter.dart';
33

44
/// An abstract class that represents common firestore operations.
55
abstract class QueryFilter {
6-
76
/// The name of the field to target.
87
final String field;
98

lib/src/api/models/grid_delegate_type.dart

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ enum GridDelegateType {
1010

1111
/// Pretty name of the enum value.
1212
String get label => switch (this) {
13-
fixedCrossAxisCount => 'Fixed Cross Axis Count',
14-
maxCrossAxisExtent => 'Max Cross Axis Extent',
15-
};
13+
fixedCrossAxisCount => 'Fixed Cross Axis Count',
14+
maxCrossAxisExtent => 'Max Cross Axis Extent',
15+
};
1616
}

lib/src/api/utils.dart

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@ typedef HasNode = bool Function(String id);
1818
/// An interface for computing text information. This is meant to be used as an
1919
/// abstraction to Flutter's [TextPainter].
2020
abstract class ITextSizeCalculator {
21-
2221
/// Returns the height of a defined [TextNode] based on its width.
2322
/// The details are dependant on the implementation.
2423
double getHeightForWidth(double width);

0 commit comments

Comments
 (0)