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