Rank 1: Thread
I am seeing AppwriteException: null, OS Error: Bad file descriptor, errno = 9 (0), from time to time, it is hard to reproduce. I add new content to AppWrite DB and if physical iOS device is in a certain state, like locked in the background, I might get this. (Using a FutureBuilder to get here, and spitting this out by going to snapshot.hasError on future resolve)
else if (snapshot.hasError) {
// Get.offAll(MainScreen());
print(snapshot.error);
return Center(child: Column(
children: [
Text('${snapshot.error}'),
const Icon(Icons.error_outline),
],
),);
}