case where the folder is drafts, don't open the email but instead the compose widget

This commit is contained in:
Juan Marulanda De Los Rios 2025-08-21 13:50:05 -04:00
parent 0e1e9a3ced
commit 51c772a2a1

View File

@ -3,6 +3,7 @@ import 'package:markdown/markdown.dart' as md;
import 'api_service.dart';
import 'structs.dart';
import 'emailView.dart';
import 'Compose.dart';
class EmailListScreen extends StatefulWidget {
final List<GetThreadResponse> emails;
@ -193,6 +194,10 @@ class _EmailListScreenState extends State<EmailListScreen>
print(email.messages); //email ids of the thread
if (widget.folder == "Drafts") {
print("IN DRAFTS MOVE THE CONTENT TO THE WRITING THING");
//open the compose
OverlayService _thisInstance = OverlayService();
_thisInstance.draftID = email;
_thisInstance.showPersistentWidget(context);
} else {
Navigator.push(
context,