mirror of
https://github.com/KRTirtho/spotube.git
synced 2025-09-14 08:25:16 +00:00

Add enhanced media controls and social sharing features. * **Enhanced Media Controls:** - Add volume control slider to `PlayerControls` widget in `lib/modules/player/player_controls.dart`. - Implement keyboard shortcuts for media controls (play/pause, next/previous track, volume up/down) in `PlayerControls` widget. - Add "lyrics" button to `PlayerView` widget in `lib/modules/player/player.dart`. * **Social Sharing Features:** - Add feature to share the currently playing track on social media platforms in `lib/components/track_tile/track_options.dart`. - Add share button to `TrackPresentationTopSection` widget in `lib/components/track_presentation/presentation_top.dart`. * **Settings:** - Add dark mode toggle in the settings page in `lib/pages/settings/settings.dart`. * **CI Configuration:** - Add `.ci.yaml` file for continuous integration configuration.
39 lines
1.7 KiB
Batchfile
39 lines
1.7 KiB
Batchfile
@ECHO off
|
|
REM Copyright 2014 The Flutter Authors. All rights reserved.
|
|
REM Use of this source code is governed by a BSD-style license that can be
|
|
REM found in the LICENSE file.
|
|
|
|
TITLE Flutter Console
|
|
|
|
echo.
|
|
echo ######## ## ## ## ######## ######## ######## ########
|
|
echo ## ## ## ## ## ## ## ## ##
|
|
echo ## ## ## ## ## ## ## ## ##
|
|
echo ###### ## ## ## ## ## ###### ########
|
|
echo ## ## ## ## ## ## ## ## ##
|
|
echo ## ## ## ## ## ## ## ## ##
|
|
echo ## ######## ####### ## ## ######## ## ##
|
|
echo.
|
|
echo.
|
|
|
|
echo WELCOME to the Flutter Console.
|
|
echo ===============================================================================
|
|
echo.
|
|
echo Use the console below this message to interact with the "flutter" command.
|
|
echo Run "flutter doctor" to check if your system is ready to run Flutter apps.
|
|
echo Run "flutter create <app_name>" to create a new Flutter project.
|
|
echo.
|
|
echo Run "flutter help" to see all available commands.
|
|
echo.
|
|
echo Want to use an IDE to interact with Flutter? https://flutter.dev/ide-setup/
|
|
echo.
|
|
echo Want to run the "flutter" command from any Command Prompt or PowerShell window?
|
|
echo Add Flutter to your PATH: https://flutter.dev/setup-windows/#update-your-path
|
|
echo.
|
|
echo ===============================================================================
|
|
|
|
REM "%~dp0" is the directory of this file including trailing backslash
|
|
SET PATH=%~dp0bin;%PATH%
|
|
|
|
CALL cmd /K "@echo off & cd %USERPROFILE% & echo on"
|