More clear comment

This commit is contained in:
Sarah Jamie Lewis 2023-09-06 10:54:24 -07:00
parent c0f23fe647
commit a0a00b1ade
1 changed files with 3 additions and 1 deletions

View File

@ -51,7 +51,9 @@ class _FileSharingViewState extends State<FileSharingView> {
semanticChildCount: sharedFiles.length,
itemBuilder: (context, index) {
String filekey = sharedFiles[index]["FileKey"];
//EnvironmentConfig.debugLog("$sharedFiles " + sharedFiles[index].toString());
// This makes the UI *very* slow when enabled. But can be useful for debugging
// Uncomment if necessary.
// EnvironmentConfig.debugLog("$sharedFiles " + sharedFiles[index].toString());
return SwitchListTile(
title: Text(sharedFiles[index]["Path"]),
subtitle: Text(sharedFiles[index]["DateShared"]),