23 lines
541 B
Dart
23 lines
541 B
Dart
import 'package:flutter/material.dart';
|
|
import 'package:quickgui/src/widgets/home_page/downloader_menu.dart';
|
|
import 'package:quickgui/src/widgets/home_page/logo.dart';
|
|
|
|
class DownloaderPage extends StatelessWidget {
|
|
const DownloaderPage({Key? key}) : super(key: key);
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return Scaffold(
|
|
appBar: AppBar(
|
|
title: const Text('Downloader'),
|
|
),
|
|
body: Column(
|
|
children: const [
|
|
Logo(),
|
|
DownloaderMenu(),
|
|
],
|
|
),
|
|
);
|
|
}
|
|
}
|