diff --git a/packages/patrol_finders/lib/src/custom_finders/utils.dart b/packages/patrol_finders/lib/src/custom_finders/utils.dart index 3c810648f..ee42e333a 100644 --- a/packages/patrol_finders/lib/src/custom_finders/utils.dart +++ b/packages/patrol_finders/lib/src/custom_finders/utils.dart @@ -1,5 +1,3 @@ -import 'package:flutter/material.dart'; - /// Makes it possible to retrieve a name that this [Symbol] was created with. extension SymbolName on Symbol { /// Returns the name that this [Symbol] was created with. @@ -11,16 +9,3 @@ extension SymbolName on Symbol { return symbol.substring(8, symbol.length - 2); } } - -/// List of all [Alignment] values. -const alignments = [ - Alignment.center, - Alignment.bottomCenter, - Alignment.bottomLeft, - Alignment.bottomRight, - Alignment.centerLeft, - Alignment.centerRight, - Alignment.topCenter, - Alignment.topLeft, - Alignment.topRight, -];