33 lines
894 B
Dart
33 lines
894 B
Dart
import 'structs.dart';
|
|
import 'package:flutter/material.dart';
|
|
|
|
class CollapsableEmails extends StatefulWidget {
|
|
final List<String> thread; // email id's in the form xyz@gmail.com
|
|
final List<String> threadMarkdown;
|
|
final String threadIDs;
|
|
|
|
CollapsableEmails(
|
|
{required this.thread,
|
|
required this.threadMarkdown,
|
|
required this.threadIDs, String? targetJumpNumbering, String? targetViewspecs, String? targetFiltering, required String nameOfDocument});
|
|
|
|
get getThreads => null;
|
|
|
|
get getAugmentRoot => null;
|
|
|
|
@override
|
|
State<CollapsableEmails> createState() => _CollapsableEmailsState();
|
|
}
|
|
|
|
class _CollapsableEmailsState extends State<CollapsableEmails> {
|
|
|
|
List<String> getThreads() {
|
|
return widget.thread;
|
|
}
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return Scaffold(body: Text("collapsable stud"));
|
|
}
|
|
}
|