first commit
This commit is contained in:
@@ -0,0 +1,32 @@
|
||||
import 'dart:io';
|
||||
|
||||
import 'package:flutter/material.dart';
|
||||
import 'package:flutter_gen/gen_l10n/app_localizations.dart';
|
||||
|
||||
import '../components/AudioServiceSettingsScreen/buffer_duration_list_tile.dart';
|
||||
import '../components/AudioServiceSettingsScreen/stop_foreground_selector.dart';
|
||||
import '../components/AudioServiceSettingsScreen/song_shuffle_item_count_editor.dart';
|
||||
|
||||
class AudioServiceSettingsScreen extends StatelessWidget {
|
||||
const AudioServiceSettingsScreen({Key? key}) : super(key: key);
|
||||
|
||||
static const routeName = "/settings/audioservice";
|
||||
|
||||
@override
|
||||
Widget build(BuildContext context) {
|
||||
return Scaffold(
|
||||
appBar: AppBar(
|
||||
title: Text(AppLocalizations.of(context)!.audioService),
|
||||
),
|
||||
body: Scrollbar(
|
||||
child: ListView(
|
||||
children: [
|
||||
if (Platform.isAndroid) const StopForegroundSelector(),
|
||||
const SongShuffleItemCountEditor(),
|
||||
const BufferDurationListTile(),
|
||||
],
|
||||
),
|
||||
),
|
||||
);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user