-
Notifications
You must be signed in to change notification settings - Fork 363
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' of https://github.com/xiaoyaocz/dart_simple_live
- Loading branch information
Showing
31 changed files
with
695 additions
and
182 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
{ | ||
"version": "1.3.0", | ||
"version_num": 10300, | ||
"version_desc": "1. 优化播放器 #78,#113\n2. 支持画面尺寸调整 #61\n3. 支持锁定播放器 #53\n4. 取消关注增加提示框 #120\n5. 修复抖音直播问题 #121\n6. 优化哔哩哔哩直播弹幕获取\n7. 播放器支持截图", | ||
"version": "1.3.1", | ||
"version_num": 10301, | ||
"version_desc": "1. 支持直播间内设置定时关闭 #124\n2. 支持主页与平台自定义排序 #16,#76\n3. 支持跳转至原APP中打开直播间 #118\n4. 斗鱼增加录播判断 #6,#103\n5. 修复抖音直播问题 #121\n6. 播放失败尝试自动重连", | ||
"prerelease":false, | ||
"download_url": "https://github.com/xiaoyaocz/dart_simple_live/releases" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,40 @@ | ||
import 'package:flutter/material.dart'; | ||
import 'package:remixicon/remixicon.dart'; | ||
|
||
class Constant { | ||
static const String kUpdateFollow = "UpdateFollow"; | ||
|
||
static final Map<String, HomePageItem> allHomePages = { | ||
"recommend": HomePageItem( | ||
iconData: Remix.home_smile_line, | ||
title: "首页", | ||
index: 0, | ||
), | ||
"follow": HomePageItem( | ||
iconData: Remix.heart_line, | ||
title: "关注", | ||
index: 1, | ||
), | ||
"category": HomePageItem( | ||
iconData: Remix.apps_line, | ||
title: "分类", | ||
index: 2, | ||
), | ||
"user": HomePageItem( | ||
iconData: Remix.user_smile_line, | ||
title: "我的", | ||
index: 3, | ||
), | ||
}; | ||
} | ||
|
||
class HomePageItem { | ||
final IconData iconData; | ||
final String title; | ||
final int index; | ||
HomePageItem({ | ||
required this.iconData, | ||
required this.title, | ||
required this.index, | ||
}); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.