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