14 lines
338 B
Dart
14 lines
338 B
Dart
import 'package:flutter/material.dart';
|
|
import 'structs.dart';
|
|
|
|
class AttachmentWidget extends StatelessWidget{
|
|
final AttachmentResponse attachment;
|
|
AttachmentWidget({required this.attachment});
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return Scaffold(
|
|
body: Text("PDF EVENTUALLY, STUB")
|
|
);
|
|
}
|
|
} |