diff --git a/lib/ui/common/common_elements.dart b/lib/ui/common/common_elements.dart deleted file mode 100644 index 51b43e989..000000000 --- a/lib/ui/common/common_elements.dart +++ /dev/null @@ -1,16 +0,0 @@ -import 'package:flutter/material.dart'; -import 'package:flutter/widgets.dart'; - -Widget nothingToSeeHere({Color textColor}) { - return Center( - child: Padding( - padding: const EdgeInsets.all(8.0), - child: Text( - "Nothing to see here! 👀", - style: TextStyle( - color: textColor.withOpacity(0.35), - ), - ), - ), - ); -}