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