import 'package:fluent_ui/fluent_ui.dart'; class DownloadedPage extends StatefulWidget { const DownloadedPage({super.key}); @override State createState() => _DownloadedPageState(); } class _DownloadedPageState extends State { @override Widget build(BuildContext context) { return const Placeholder(); } }