first commit
Build / Build for Android (push) Has been cancelled
Build / Build for iOS (push) Has been cancelled

This commit is contained in:
Zakaria
2026-05-18 14:15:38 -04:00
commit 1563409cb1
382 changed files with 45347 additions and 0 deletions
@@ -0,0 +1,26 @@
import 'package:flutter/material.dart';
import 'package:flutter_gen/gen_l10n/app_localizations.dart';
import 'add_download_location_screen.dart';
import '../components/DownloadLocationSettingsScreen/download_location_list.dart';
class DownloadsSettingsScreen extends StatelessWidget {
const DownloadsSettingsScreen({Key? key}) : super(key: key);
static const routeName = "/settings/downloadlocations";
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: Text(AppLocalizations.of(context)!.downloadLocations),
),
floatingActionButton: FloatingActionButton(
child: const Icon(Icons.add),
onPressed: () => Navigator.of(context)
.pushNamed(AddDownloadLocationScreen.routeName),
),
body: const DownloadLocationList(),
);
}
}