|
|
@ -151,6 +151,7 @@ class _UserViewState extends State<UserView> {
|
|
|
|
],
|
|
|
|
],
|
|
|
|
),
|
|
|
|
),
|
|
|
|
),
|
|
|
|
),
|
|
|
|
|
|
|
|
|
|
|
|
const SizedBox(
|
|
|
|
const SizedBox(
|
|
|
|
height: 10,
|
|
|
|
height: 10,
|
|
|
|
),
|
|
|
|
),
|
|
|
@ -195,75 +196,100 @@ class _UserViewState extends State<UserView> {
|
|
|
|
),
|
|
|
|
),
|
|
|
|
],
|
|
|
|
],
|
|
|
|
)),
|
|
|
|
)),
|
|
|
|
|
|
|
|
|
|
|
|
///歌单
|
|
|
|
///歌单
|
|
|
|
Row(
|
|
|
|
|
|
|
|
mainAxisAlignment: MainAxisAlignment.spaceBetween,
|
|
|
|
|
|
|
|
children: [
|
|
|
|
|
|
|
|
Text(
|
|
|
|
|
|
|
|
'歌单 $playlistCount',
|
|
|
|
|
|
|
|
style: const TextStyle(
|
|
|
|
|
|
|
|
fontSize: 20, fontWeight: FontWeight.w500),
|
|
|
|
|
|
|
|
),
|
|
|
|
|
|
|
|
Row(
|
|
|
|
|
|
|
|
children: [
|
|
|
|
|
|
|
|
IconButton(
|
|
|
|
|
|
|
|
onPressed: () {
|
|
|
|
|
|
|
|
_showAddPlaylistDialog();
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
icon: Image.asset(
|
|
|
|
|
|
|
|
"assets/img/user_add.png",
|
|
|
|
|
|
|
|
width: 31,
|
|
|
|
|
|
|
|
color: const Color(0xff404040),
|
|
|
|
|
|
|
|
)),
|
|
|
|
|
|
|
|
IconButton(
|
|
|
|
|
|
|
|
onPressed: () {},
|
|
|
|
|
|
|
|
icon: Image.asset("assets/img/user_export.png",
|
|
|
|
|
|
|
|
width: 31))
|
|
|
|
|
|
|
|
],
|
|
|
|
|
|
|
|
)
|
|
|
|
|
|
|
|
],
|
|
|
|
|
|
|
|
),
|
|
|
|
|
|
|
|
Container(
|
|
|
|
Container(
|
|
|
|
padding: const EdgeInsets.only(left: 15, right: 15, top: 10, bottom: 5),
|
|
|
|
child: Column(
|
|
|
|
child: ListView.builder(
|
|
|
|
crossAxisAlignment: CrossAxisAlignment.start,
|
|
|
|
shrinkWrap: true, // 使得ListView适应内容高度
|
|
|
|
children: [
|
|
|
|
itemCount: playlistNames.length, // 根据歌单数量动态设置itemCount
|
|
|
|
// 歌单标题行
|
|
|
|
itemBuilder: (context, index) {
|
|
|
|
Row(
|
|
|
|
return InkWell(
|
|
|
|
mainAxisAlignment: MainAxisAlignment.spaceBetween,
|
|
|
|
onTap: () {
|
|
|
|
children: [
|
|
|
|
print('点击成功');
|
|
|
|
Text(
|
|
|
|
Get.to(MyMusicView(songlistIdd: playlistid[index]));
|
|
|
|
'歌单 $playlistCount',
|
|
|
|
// 点击歌单时的回调,可以导航到歌单详情页
|
|
|
|
style: const TextStyle(
|
|
|
|
//待添加
|
|
|
|
fontSize: 20,
|
|
|
|
},
|
|
|
|
fontWeight: FontWeight.w500
|
|
|
|
child: Row(
|
|
|
|
),
|
|
|
|
mainAxisAlignment: MainAxisAlignment.spaceBetween,
|
|
|
|
),
|
|
|
|
children: [
|
|
|
|
Row(
|
|
|
|
Image.asset("assets/img/artist_pic.png"),
|
|
|
|
children: [
|
|
|
|
Column(
|
|
|
|
IconButton(
|
|
|
|
crossAxisAlignment: CrossAxisAlignment.start,
|
|
|
|
onPressed: () {
|
|
|
|
|
|
|
|
_showAddPlaylistDialog();
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
icon: Image.asset(
|
|
|
|
|
|
|
|
"assets/img/user_add.png",
|
|
|
|
|
|
|
|
width: 31,
|
|
|
|
|
|
|
|
color: const Color(0xff404040),
|
|
|
|
|
|
|
|
)
|
|
|
|
|
|
|
|
),
|
|
|
|
|
|
|
|
IconButton(
|
|
|
|
|
|
|
|
onPressed: () {},
|
|
|
|
|
|
|
|
icon: Image.asset(
|
|
|
|
|
|
|
|
"assets/img/user_export.png",
|
|
|
|
|
|
|
|
width: 31
|
|
|
|
|
|
|
|
)
|
|
|
|
|
|
|
|
)
|
|
|
|
|
|
|
|
],
|
|
|
|
|
|
|
|
)
|
|
|
|
|
|
|
|
],
|
|
|
|
|
|
|
|
),
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
const SizedBox(
|
|
|
|
|
|
|
|
height: 10,
|
|
|
|
|
|
|
|
),
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// 歌单列表
|
|
|
|
|
|
|
|
Padding(
|
|
|
|
|
|
|
|
padding: const EdgeInsets.symmetric(horizontal: 15),
|
|
|
|
|
|
|
|
child: Column(
|
|
|
|
|
|
|
|
children: List.generate(
|
|
|
|
|
|
|
|
playlistNames.length,
|
|
|
|
|
|
|
|
(index) => Column(
|
|
|
|
children: [
|
|
|
|
children: [
|
|
|
|
Text(
|
|
|
|
InkWell(
|
|
|
|
playlistNames[index], // 动态显示歌单名称
|
|
|
|
onTap: () {
|
|
|
|
style: TextStyle(fontSize: 20),
|
|
|
|
print('点击成功');
|
|
|
|
),
|
|
|
|
Get.to(MyMusicView(songlistIdd: playlistid[index]));
|
|
|
|
Text(
|
|
|
|
},
|
|
|
|
'$playlistCount首', // 动态显示歌曲数量
|
|
|
|
child: Row(
|
|
|
|
style: TextStyle(fontSize: 16),
|
|
|
|
children: [
|
|
|
|
|
|
|
|
Image.asset("assets/img/artist_pic.png"),
|
|
|
|
|
|
|
|
const SizedBox(width: 25),
|
|
|
|
|
|
|
|
Expanded(
|
|
|
|
|
|
|
|
child: Column(
|
|
|
|
|
|
|
|
crossAxisAlignment: CrossAxisAlignment.start,
|
|
|
|
|
|
|
|
children: [
|
|
|
|
|
|
|
|
Text(
|
|
|
|
|
|
|
|
playlistNames[index],
|
|
|
|
|
|
|
|
style: const TextStyle(fontSize: 20),
|
|
|
|
|
|
|
|
),
|
|
|
|
|
|
|
|
Text(
|
|
|
|
|
|
|
|
'$playlistCount首',
|
|
|
|
|
|
|
|
style: const TextStyle(fontSize: 16),
|
|
|
|
|
|
|
|
),
|
|
|
|
|
|
|
|
],
|
|
|
|
|
|
|
|
),
|
|
|
|
|
|
|
|
),
|
|
|
|
|
|
|
|
Image.asset("assets/img/user_next.png"),
|
|
|
|
|
|
|
|
],
|
|
|
|
|
|
|
|
),
|
|
|
|
),
|
|
|
|
),
|
|
|
|
|
|
|
|
if (index < playlistNames.length - 1)
|
|
|
|
|
|
|
|
const SizedBox(height: 10),
|
|
|
|
],
|
|
|
|
],
|
|
|
|
),
|
|
|
|
),
|
|
|
|
const SizedBox(width: 80),
|
|
|
|
),
|
|
|
|
Image.asset("assets/img/user_next.png"),
|
|
|
|
|
|
|
|
],
|
|
|
|
|
|
|
|
),
|
|
|
|
),
|
|
|
|
);
|
|
|
|
),
|
|
|
|
},
|
|
|
|
],
|
|
|
|
),
|
|
|
|
),
|
|
|
|
),
|
|
|
|
),
|
|
|
|
|
|
|
|
|
|
|
|
const SizedBox(
|
|
|
|
const SizedBox(
|
|
|
|
height: 20,
|
|
|
|
height: 30,
|
|
|
|
),
|
|
|
|
),
|
|
|
|
|
|
|
|
|
|
|
|
const Text(
|
|
|
|
const Text(
|
|
|
@ -399,8 +425,19 @@ class _UserViewState extends State<UserView> {
|
|
|
|
content: TextFieldColor(controller: _controller, hintText: '请输入歌单名称'),
|
|
|
|
content: TextFieldColor(controller: _controller, hintText: '请输入歌单名称'),
|
|
|
|
actions: <Widget>[
|
|
|
|
actions: <Widget>[
|
|
|
|
TextButton(
|
|
|
|
TextButton(
|
|
|
|
onPressed: () {
|
|
|
|
onPressed: () async {
|
|
|
|
Navigator.of(context).pop();
|
|
|
|
Navigator.of(context).pop();
|
|
|
|
|
|
|
|
String enteredSongName = _controller.text;
|
|
|
|
|
|
|
|
SonglistBean bean = await SonglistApi().addSonglist(
|
|
|
|
|
|
|
|
songlistName: enteredSongName,
|
|
|
|
|
|
|
|
Authorization: AppData().currentToken);
|
|
|
|
|
|
|
|
if (bean.code == 200) {
|
|
|
|
|
|
|
|
print('添加成功');
|
|
|
|
|
|
|
|
setState(() {
|
|
|
|
|
|
|
|
playlistCount++;
|
|
|
|
|
|
|
|
playlistNames.add(enteredSongName);
|
|
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
}
|
|
|
|
},
|
|
|
|
},
|
|
|
|
style: TextButton.styleFrom(
|
|
|
|
style: TextButton.styleFrom(
|
|
|
|
backgroundColor: const Color(0xff429482),
|
|
|
|
backgroundColor: const Color(0xff429482),
|
|
|
@ -410,24 +447,13 @@ class _UserViewState extends State<UserView> {
|
|
|
|
),
|
|
|
|
),
|
|
|
|
),
|
|
|
|
),
|
|
|
|
child: const Text(
|
|
|
|
child: const Text(
|
|
|
|
"取消",
|
|
|
|
"确认",
|
|
|
|
style: TextStyle(color: Colors.white),
|
|
|
|
style: TextStyle(color: Colors.white),
|
|
|
|
),
|
|
|
|
),
|
|
|
|
),
|
|
|
|
),
|
|
|
|
TextButton(
|
|
|
|
TextButton(
|
|
|
|
onPressed: () async {
|
|
|
|
onPressed: () {
|
|
|
|
Navigator.of(context).pop();
|
|
|
|
Navigator.of(context).pop();
|
|
|
|
String enteredSongName = _controller.text;
|
|
|
|
|
|
|
|
//playlistCount++;
|
|
|
|
|
|
|
|
// Add the new playlist
|
|
|
|
|
|
|
|
setState(() {
|
|
|
|
|
|
|
|
//playlistNames.add(enteredSongName);
|
|
|
|
|
|
|
|
_fetchSonglistData();
|
|
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
// songlistName: _controller.text,
|
|
|
|
|
|
|
|
SonglistBean bean = await SonglistApi().addSonglist(
|
|
|
|
|
|
|
|
songlistName: enteredSongName,
|
|
|
|
|
|
|
|
Authorization: AppData().currentToken);
|
|
|
|
|
|
|
|
},
|
|
|
|
},
|
|
|
|
style: TextButton.styleFrom(
|
|
|
|
style: TextButton.styleFrom(
|
|
|
|
backgroundColor: const Color(0xff429482),
|
|
|
|
backgroundColor: const Color(0xff429482),
|
|
|
@ -437,7 +463,7 @@ class _UserViewState extends State<UserView> {
|
|
|
|
),
|
|
|
|
),
|
|
|
|
),
|
|
|
|
),
|
|
|
|
child: const Text(
|
|
|
|
child: const Text(
|
|
|
|
"确认",
|
|
|
|
"取消",
|
|
|
|
style: TextStyle(color: Colors.white),
|
|
|
|
style: TextStyle(color: Colors.white),
|
|
|
|
),
|
|
|
|
),
|
|
|
|
),
|
|
|
|
),
|
|
|
|