mirror of
https://github.com/wgh136/pixes.git
synced 2025-09-27 04:57:23 +00:00
16 lines
356 B
Dart
16 lines
356 B
Dart
import 'package:fluent_ui/fluent_ui.dart';
|
|
|
|
class DownloadedPage extends StatefulWidget {
|
|
const DownloadedPage({super.key});
|
|
|
|
@override
|
|
State<DownloadedPage> createState() => _DownloadedPageState();
|
|
}
|
|
|
|
class _DownloadedPageState extends State<DownloadedPage> {
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return const Placeholder();
|
|
}
|
|
}
|