声音功能

This commit is contained in:
Developer
2026-03-30 21:30:11 +08:00
parent ecffddbc6f
commit 4cd7629f61
15 changed files with 703 additions and 126 deletions

View File

@@ -4,6 +4,24 @@ All notable changes to this project will be documented in this file.
---
## [1.3.7] - 2026-03-30
### 新增
- 🎵 **点击音效功能**
- 新增音频管理类 `lib/utils/audio_manager.dart`使用audioplayers库管理音效播放
- 在首页点击诗词卡片时播放音效 `assets/audios/deep.mp3`
- 在点击"下一条"按钮时播放音效
- 在点击"点赞"按钮时播放音效
- 修改 `lib/views/home/home_page.dart`,初始化音频管理器并在点赞、下一条事件中添加音效
- 修改 `lib/views/home/home_part.dart`,在诗词卡片点击事件中添加音效
- 支持静音控制可通过AudioManager设置静音状态
### 修复
- 📁 **音频文件声明**
-`pubspec.yaml` 中添加 `assets/audios/deep.mp3` 音频文件的声明,确保应用能正确加载音频资源
---
## [1.3.6] - 2026-03-30
### 新增