Files
Redesnigned-Finamp/lib/screens/interaction_settings_screen.dart
Zakaria d0ca84d8d2
Build / Build for Android (push) Has been cancelled
Build / Build for iOS (push) Has been cancelled
redesign app phase 1
2026-05-18 14:34:41 -04:00

33 lines
944 B
Dart

import 'dart:io';
import 'package:flutter/material.dart';
import 'package:finamp/l10n/app_localizations.dart';
import '../components/InteractionSettingsScreen/swipe_insert_queue_next_selector.dart';
import '../components/InteractionSettingsScreen/FastScrollSelector.dart';
import '../components/InteractionSettingsScreen/disable_gestures.dart';
class InteractionSettingsScreen extends StatelessWidget {
const InteractionSettingsScreen({Key? key}) : super(key: key);
static const routeName = "/settings/interactions";
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: Text(AppLocalizations.of(context)!.interactions),
),
body: Scrollbar(
child: ListView(
children: [
const SwipeInsertQueueNextSelector(),
const FastScrollSelector(),
const DisableGestureSelector(),
],
),
),
);
}
}