{"id":30952364,"url":"https://github.com/mugisha-pascal/music-player-mobile","last_synced_at":"2025-09-11T07:42:05.628Z","repository":{"id":308012504,"uuid":"1022698767","full_name":"MUGISHA-Pascal/Music-Player-Mobile","owner":"MUGISHA-Pascal","description":"A mobile Flutter music player app with audio playback and intuitive UI. Enjoy smooth streaming, playlist management, and rich media controls on mobile.","archived":false,"fork":false,"pushed_at":"2025-08-03T15:04:53.000Z","size":1012,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-08-03T17:21:34.500Z","etag":null,"topics":["hive","mvvm-architecture","riverpod","sharedpreferences"],"latest_commit_sha":null,"homepage":"","language":"Dart","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/MUGISHA-Pascal.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2025-07-19T16:25:53.000Z","updated_at":"2025-08-03T15:04:56.000Z","dependencies_parsed_at":"2025-08-03T17:21:48.771Z","dependency_job_id":"fea449d5-1040-4d75-a940-75ec2e422c8e","html_url":"https://github.com/MUGISHA-Pascal/Music-Player-Mobile","commit_stats":null,"previous_names":["mugisha-pascal/music-player-mobile"],"tags_count":null,"template":false,"template_full_name":null,"purl":"pkg:github/MUGISHA-Pascal/Music-Player-Mobile","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MUGISHA-Pascal%2FMusic-Player-Mobile","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MUGISHA-Pascal%2FMusic-Player-Mobile/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MUGISHA-Pascal%2FMusic-Player-Mobile/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MUGISHA-Pascal%2FMusic-Player-Mobile/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/MUGISHA-Pascal","download_url":"https://codeload.github.com/MUGISHA-Pascal/Music-Player-Mobile/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MUGISHA-Pascal%2FMusic-Player-Mobile/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":274596165,"owners_count":25314023,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-09-11T02:00:13.660Z","response_time":74,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["hive","mvvm-architecture","riverpod","sharedpreferences"],"created_at":"2025-09-11T07:42:03.664Z","updated_at":"2025-09-11T07:42:05.619Z","avatar_url":"https://github.com/MUGISHA-Pascal.png","language":"Dart","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Music Player Mobile\n\nA modern Flutter music player application with authentication, local audio playback, and a beautiful user interface.\n\n## Features\n\n- **User Authentication**: Secure signup and login system\n- **Local Audio Playback**: Play music files from your device\n- **Background Audio**: Continue playing music while using other apps\n- **Audio Waveforms**: Visual representation of audio tracks\n- **File Picker**: Easy selection of audio files from device storage\n- **Customizable Theme**: Dark theme with color customization options\n- **Offline Support**: Works completely offline with local files\n- **Cross-Platform**: Supports Android, iOS, Web, Windows, Linux, and macOS\n\n## Architecture\n\nThis project follows a clean architecture pattern with the following structure:\n\n```\nlib/\n├── core/           # Shared utilities, constants, and widgets\n│   ├── constants/  # App-wide constants\n│   ├── failure/    # Error handling\n│   ├── models/     # Shared data models\n│   ├── providers/  # Global state providers\n│   ├── theme/      # App theming\n│   ├── utils/      # Utility functions\n│   └── widgets/    # Reusable UI components\n├── features/       # Feature-based modules\n│   ├── auth/       # Authentication feature\n│   └── home/       # Home screen and music player\n└── main.dart       # App entry point\n```\n\n## Tech Stack\n\n- **Framework**: Flutter 3.8+\n- **State Management**: Riverpod with code generation\n- **Audio Playback**: just_audio with background service\n- **Local Storage**: Hive for data persistence\n- **File Management**: file_picker for audio file selection\n- **UI Components**: Custom widgets with Material Design\n- **Audio Visualization**: audio_waveforms for waveform display\n- **HTTP Client**: http for API calls (if needed)\n- **Functional Programming**: fpdart for functional programming utilities\n\n## Screenshots\n\n*Screenshots will be added here*\n\n## Getting Started\n\n### Prerequisites\n\n- Flutter SDK (3.8.1 or higher)\n- Dart SDK\n- Android Studio / VS Code\n- Android SDK (for Android development)\n- Xcode (for iOS development, macOS only)\n\n### Installation\n\n1. **Clone the repository**\n   ```bash\n   git clone \u003crepository-url\u003e\n   cd music_player_mobile\n   ```\n\n2. **Install dependencies**\n   ```bash\n   flutter pub get\n   ```\n\n3. **Run code generation** (for Riverpod)\n   ```bash\n   flutter packages pub run build_runner build\n   ```\n\n4. **Run the app**\n   ```bash\n   flutter run\n   ```\n\n### Building for Production\n\n**Android:**\n```bash\nflutter build apk --release\n```\n\n**iOS:**\n```bash\nflutter build ios --release\n```\n\n**Web:**\n```bash\nflutter build web --release\n```\n\n## Project Structure\n\n### Core Components\n\n- **Authentication**: User registration and login system\n- **Music Player**: Local audio file playback with controls\n- **File Management**: Audio file selection and organization\n- **Theme System**: Customizable dark theme with color picker\n- **State Management**: Global state using Riverpod providers\n\n### Key Dependencies\n\n- `just_audio`: Audio playback engine\n- `just_audio_background`: Background audio service\n- `audio_waveforms`: Audio visualization\n- `file_picker`: File selection from device\n- `hive`: Local database storage\n- `flutter_riverpod`: State management\n- `shared_preferences`: User preferences storage\n- `flex_color_picker`: Color customization\n- `dotted_border`: UI styling\n\n## Configuration\n\n### Android Permissions\n\nThe app requires the following permissions:\n- `READ_EXTERNAL_STORAGE`: Access to audio files\n- `WRITE_EXTERNAL_STORAGE`: Save files (if needed)\n- `INTERNET`: Network access (if needed)\n\n### iOS Permissions\n\n- Microphone access (if recording features are added)\n- File access permissions\n\n## Customization\n\n### Theme Customization\n\nThe app uses a dark theme by default with customizable colors. Users can modify the theme through the settings interface.\n\n### Adding New Features\n\n1. Create a new feature directory in `lib/features/`\n2. Follow the existing pattern with `models/`, `repositories/`, `view/`, and `viewmodel/` directories\n3. Add necessary providers to the core providers directory\n4. Update the main app to include the new feature\n\n## Troubleshooting\n\n### Common Issues\n\n1. **Audio not playing**: Check device permissions and audio file format\n2. **Build errors**: Run `flutter clean` and `flutter pub get`\n3. **Code generation issues**: Run `flutter packages pub run build_runner build --delete-conflicting-outputs`\n\n### Debug Mode\n\nFor debugging, run the app in debug mode:\n```bash\nflutter run --debug\n```\n\n## License\n\nThis project is licensed under the MIT License - see the LICENSE file for details.\n\n## Contributing\n\n1. Fork the repository\n2. Create a feature branch (`git checkout -b feature/amazing-feature`)\n3. Commit your changes (`git commit -m 'Add some amazing feature'`)\n4. Push to the branch (`git push origin feature/amazing-feature`)\n5. Open a Pull Request\n\n## Support\n\nIf you encounter any issues or have questions, please:\n1. Check the existing issues\n2. Create a new issue with detailed information\n3. Include device information and error logs\n\n---\n\n**Note**: This is a mobile music player application built with Flutter. It supports local audio file playback and provides a modern, intuitive user interface for music listening.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmugisha-pascal%2Fmusic-player-mobile","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmugisha-pascal%2Fmusic-player-mobile","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmugisha-pascal%2Fmusic-player-mobile/lists"}