mirror of
https://github.com/KRTirtho/spotube.git
synced 2025-09-16 17:05:17 +00:00

Configuration File Removals: .vscode/c_cpp_properties.json: Removed the entire configuration for C/C++ properties. .vscode/launch.json: Removed the Dart launch configurations for different environments and modes. .vscode/settings.json: Removed settings related to CMake, spell checking, file nesting, and Dart Flutter SDK path. .vscode/snippets.code-snippets: Removed code snippets for Dart, including PaginatedState and PaginatedNotifier templates. .vscode/tasks.json: Removed the tasks configuration file. Documentation Updates: CONTRIBUTION.md: Removed heart emoji from the introductory text. README.md: Updated the logo image and made minor text adjustments, including removing emojis and updating section titles. [1] [2] [3] [4] [5] Asset Removals: lib/collections/assets.gen.dart: Removed multiple unused asset references, including images related to Spotube logos and banners. [1] [2] [3] Minor Code Cleanups: cli/commands/build/linux.dart, cli/commands/build/windows.dart, cli/commands/translated.dart, cli/commands/untranslated.dart: Adjusted import statements for consistency. [1] [2] [3] [4] integration_test/app_test.dart: Removed an unnecessary blank line. lib/collections/routes.dart: Commented out the TrackRoute configuration.
78 lines
2.1 KiB
Dart
78 lines
2.1 KiB
Dart
import 'package:flutter_hooks/flutter_hooks.dart';
|
|
import 'package:shadcn_flutter/shadcn_flutter.dart';
|
|
import 'package:shadcn_flutter/shadcn_flutter_extension.dart';
|
|
import 'package:spotube/collections/spotube_icons.dart';
|
|
|
|
class ZoomControls extends HookWidget {
|
|
final int value;
|
|
final ValueChanged<int> onChanged;
|
|
final int? min;
|
|
final int? max;
|
|
|
|
final int interval;
|
|
final Icon increaseIcon;
|
|
final Icon decreaseIcon;
|
|
|
|
final Axis direction;
|
|
final String unit;
|
|
|
|
const ZoomControls({
|
|
super.key,
|
|
required this.value,
|
|
required this.onChanged,
|
|
this.min,
|
|
this.max,
|
|
this.interval = 10,
|
|
this.increaseIcon = const Icon(SpotubeIcons.zoomIn),
|
|
this.decreaseIcon = const Icon(SpotubeIcons.zoomOut),
|
|
this.direction = Axis.horizontal,
|
|
this.unit = "%",
|
|
});
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
final actions = [
|
|
IconButton.ghost(
|
|
icon: decreaseIcon,
|
|
onPressed: () {
|
|
if (value == min) return;
|
|
onChanged(value - interval);
|
|
},
|
|
),
|
|
Text("$value$unit"),
|
|
IconButton.ghost(
|
|
icon: increaseIcon,
|
|
onPressed: () {
|
|
if (value == max) return;
|
|
onChanged(value + interval);
|
|
},
|
|
),
|
|
];
|
|
|
|
return Container(
|
|
constraints: BoxConstraints(
|
|
maxHeight: direction == Axis.horizontal ? 50 : 200,
|
|
maxWidth: direction == Axis.vertical ? 50 : double.infinity,
|
|
),
|
|
margin: const EdgeInsets.all(8),
|
|
child: SurfaceCard(
|
|
surfaceBlur: context.theme.surfaceBlur,
|
|
surfaceOpacity: context.theme.surfaceOpacity,
|
|
padding: EdgeInsets.zero,
|
|
child: direction == Axis.horizontal
|
|
? Row(
|
|
mainAxisAlignment: MainAxisAlignment.end,
|
|
mainAxisSize: MainAxisSize.min,
|
|
children: actions,
|
|
)
|
|
: Column(
|
|
mainAxisAlignment: MainAxisAlignment.end,
|
|
mainAxisSize: MainAxisSize.min,
|
|
verticalDirection: VerticalDirection.up,
|
|
children: actions,
|
|
),
|
|
),
|
|
);
|
|
}
|
|
}
|