attachment_engine_web 0.0.1-dev.1
attachment_engine_web: ^0.0.1-dev.1 copied to clipboard
Web implementation of attachment_engine providing Web Share API, OPFS storage, fetch downloads, and HTML5 video/audio playback.
// Copyright 2026 DHC Tech
// Use of this source code is governed by an MIT-style license that can be
// found in the LICENSE file.
import 'package:flutter/material.dart';
void main() {
runApp(const MyApp());
}
/// The example app's root widget.
class MyApp extends StatelessWidget {
/// Creates the example app.
const MyApp({super.key});
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'attachment_engine_web example',
home: Scaffold(
appBar: AppBar(title: const Text('attachment_engine_web example')),
body: const Center(child: Text('attachment_engine_web example')),
),
);
}
}