removed unnecessary lines

This commit is contained in:
ryleedavis 2023-07-25 17:42:36 -06:00
parent 512960d9b9
commit 78e4cd4631

View file

@ -81,7 +81,6 @@ class _MonkeyLoadedViewState extends ConsumerState<MonkeyLoadedView> {
File imgFile = File(filePath); File imgFile = File(filePath);
await imgFile.writeAsBytes(decodedResponse); await imgFile.writeAsBytes(decodedResponse);
print("$imgFile");
} else { } else {
throw Exception("Failed to get MonKey"); throw Exception("Failed to get MonKey");
} }
@ -132,11 +131,6 @@ class _MonkeyLoadedViewState extends ConsumerState<MonkeyLoadedView> {
File imgFile = File(filePath); File imgFile = File(filePath);
await imgFile.writeAsBytes(decodedResponse); await imgFile.writeAsBytes(decodedResponse);
print("$imgFile");
// final directory = await getApplicationDocumentsDirectory();
// final docPath = directory.path;
// final filePath = "$do/monkey.png";
} else { } else {
throw Exception("Failed to get MonKey"); throw Exception("Failed to get MonKey");
} }
@ -168,7 +162,6 @@ class _MonkeyLoadedViewState extends ConsumerState<MonkeyLoadedView> {
@override @override
Widget build(BuildContext context) { Widget build(BuildContext context) {
final Coin coin = ref.watch(managerProvider.select((value) => value.coin)); final Coin coin = ref.watch(managerProvider.select((value) => value.coin));
bool isMonkey = false;
return Background( return Background(
child: Stack( child: Stack(