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