mirror of
https://github.com/KRTirtho/spotube.git
synced 2025-09-13 07:55:18 +00:00

* feat: add playback history provider * feat: implement recently played section * refactor: use route names * feat: add stats summary and top tracks/artists/albums * feat: add top date based filtering * feat: add stream money calculation * refactor: place search in mobile navbar and settings in home appbar * feat: add individual minutes and streams page * feat(stats): add individual minutes and streams page * chore: default period to 1 month * feat: add text to explain user how hypothetical fees are calculated * chore: ensure usage of route names instead of direct paths * cd: add cache key * cd: remove media_kit_event_loop from git
71 lines
2.7 KiB
Dart
71 lines
2.7 KiB
Dart
import 'package:flutter/foundation.dart';
|
|
import 'package:flutter/material.dart';
|
|
import 'package:flutter_hooks/flutter_hooks.dart';
|
|
import 'package:hooks_riverpod/hooks_riverpod.dart';
|
|
import 'package:spotube/components/shared/page_window_title_bar.dart';
|
|
import 'package:spotube/extensions/context.dart';
|
|
import 'package:spotube/pages/settings/sections/about.dart';
|
|
import 'package:spotube/pages/settings/sections/accounts.dart';
|
|
import 'package:spotube/pages/settings/sections/appearance.dart';
|
|
import 'package:spotube/pages/settings/sections/desktop.dart';
|
|
import 'package:spotube/pages/settings/sections/developers.dart';
|
|
import 'package:spotube/pages/settings/sections/downloads.dart';
|
|
import 'package:spotube/pages/settings/sections/language_region.dart';
|
|
import 'package:spotube/pages/settings/sections/playback.dart';
|
|
import 'package:spotube/provider/user_preferences/user_preferences_provider.dart';
|
|
import 'package:spotube/utils/platform.dart';
|
|
|
|
class SettingsPage extends HookConsumerWidget {
|
|
static const name = "settings";
|
|
|
|
const SettingsPage({super.key});
|
|
|
|
@override
|
|
Widget build(BuildContext context, ref) {
|
|
final controller = useScrollController();
|
|
final preferencesNotifier = ref.watch(userPreferencesProvider.notifier);
|
|
|
|
return SafeArea(
|
|
bottom: false,
|
|
child: Scaffold(
|
|
appBar: PageWindowTitleBar(
|
|
title: Text(context.l10n.settings),
|
|
centerTitle: true,
|
|
automaticallyImplyLeading: true,
|
|
),
|
|
body: Scrollbar(
|
|
controller: controller,
|
|
child: Center(
|
|
child: ConstrainedBox(
|
|
constraints: const BoxConstraints(maxWidth: 1366),
|
|
child: ScrollConfiguration(
|
|
behavior: const ScrollBehavior().copyWith(scrollbars: false),
|
|
child: ListView(
|
|
controller: controller,
|
|
children: [
|
|
const SettingsAccountSection(),
|
|
const SettingsLanguageRegionSection(),
|
|
const SettingsAppearanceSection(),
|
|
const SettingsPlaybackSection(),
|
|
const SettingsDownloadsSection(),
|
|
if (kIsDesktop) const SettingsDesktopSection(),
|
|
if (!kIsWeb) const SettingsDevelopersSection(),
|
|
const SettingsAboutSection(),
|
|
Center(
|
|
child: FilledButton(
|
|
onPressed: preferencesNotifier.reset,
|
|
child: Text(context.l10n.restore_defaults),
|
|
),
|
|
),
|
|
const SizedBox(height: 10),
|
|
],
|
|
),
|
|
),
|
|
),
|
|
),
|
|
),
|
|
),
|
|
);
|
|
}
|
|
}
|