WallPaper_ZZH_Flutter/wallpaper/lib/pages/downloadpage/downloadpage_view.dart
2024-05-11 14:20:55 +08:00

18 lines
378 B
Dart

import 'package:flutter/material.dart';
import 'package:get/get.dart';
class DownloadPageView extends GetView {
const DownloadPageView({super.key});
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: const Text("下载"),
),
body: const Center(
child: Text("下载的..."),
),
);
}
}