delete unused file

This commit is contained in:
Neeraj Gupta 2022-07-04 08:19:30 +05:30
parent 27b47705a2
commit 02a782fd4b
No known key found for this signature in database
GPG key ID: 3C5A1684DC1729E1

View file

@ -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),
),
),
),
);
}