28 lines
980 B
Dart
28 lines
980 B
Dart
import 'package:flutter/material.dart';
|
|
import 'package:finamp/l10n/app_localizations.dart';
|
|
import 'package:hive/hive.dart';
|
|
|
|
import '../../services/finamp_settings_helper.dart';
|
|
import '../../models/finamp_models.dart';
|
|
|
|
class SwipeInsertQueueNextSelector extends StatelessWidget {
|
|
const SwipeInsertQueueNextSelector({Key? key}) : super(key: key);
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return ValueListenableBuilder<Box<FinampSettings>>(
|
|
valueListenable: FinampSettingsHelper.finampSettingsListener,
|
|
builder: (_, box, __) {
|
|
return SwitchListTile.adaptive(
|
|
title: Text(AppLocalizations.of(context)!.swipeInsertQueueNext),
|
|
subtitle:
|
|
Text(AppLocalizations.of(context)!.swipeInsertQueueNextSubtitle),
|
|
value: FinampSettingsHelper.finampSettings.swipeInsertQueueNext,
|
|
onChanged: (value) =>
|
|
FinampSettingsHelper.setSwipeInsertQueueNext(value),
|
|
);
|
|
},
|
|
);
|
|
}
|
|
}
|