Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
B
book-app
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
图表
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
EzijingWeb
book-app
Commits
5005e23c
提交
5005e23c
authored
3月 04, 2024
作者:
岳维路
浏览文件
操作
浏览文件
下载
差异文件
合并分支 'test' 到 'sim'
地址 查看合并请求 kiwitap/zijing-app!1
上级
853fdaa5
a6290010
隐藏空白字符变更
内嵌
并排
正在显示
11 个修改的文件
包含
301 行增加
和
161 行删除
+301
-161
mine.dart
lib/models/mine.dart
+13
-0
controller.dart
lib/pages/read_web/controller.dart
+24
-1
note_controller.dart
lib/pages/read_web/note_controller.dart
+10
-0
category.dart
lib/pages/read_web/widgets/category.dart
+1
-1
discuss.dart
lib/pages/read_web/widgets/discuss.dart
+1
-1
input_discuss.dart
lib/pages/read_web/widgets/input_discuss.dart
+22
-16
note.dart
lib/pages/read_web/widgets/note.dart
+1
-1
discuss.dart
lib/pages/user_discuss_des/widgets/discuss.dart
+60
-2
note.dart
lib/pages/user_notes_des/widgets/note.dart
+37
-8
constants.dart
lib/utils/constants.dart
+6
-5
pubspec.lock
pubspec.lock
+126
-126
没有找到文件。
lib/models/mine.dart
浏览文件 @
5005e23c
...
...
@@ -356,6 +356,7 @@ class NoteModel {
this
.
noteContent
,
this
.
color
,
this
.
chapterName
,
this
.
isMy
,
});
NoteModel
.
fromJson
(
dynamic
json
)
{
...
...
@@ -368,9 +369,11 @@ class NoteModel {
noteContent
=
json
[
'note_content'
]
!=
null
?
NoteContentModel
.
fromJson
(
json
[
'note_content'
])
:
null
;
color
=
json
[
'color'
];
chapterName
=
json
[
'chapter_name'
];
isMy
=
json
[
'is_my'
];
}
num
?
notesId
;
num
?
types
;
num
?
isMy
;
num
?
chapterId
;
String
?
content
;
String
?
positioning
;
...
...
@@ -382,6 +385,7 @@ class NoteModel {
NoteModel
copyWith
({
num
?
notesId
,
num
?
types
,
num
?
isMy
,
num
?
chapterId
,
String
?
content
,
String
?
positioning
,
...
...
@@ -392,6 +396,7 @@ class NoteModel {
NoteModel
(
notesId:
notesId
??
this
.
notesId
,
types:
types
??
this
.
types
,
isMy:
isMy
??
this
.
isMy
,
chapterId:
chapterId
??
this
.
chapterId
,
content:
content
??
this
.
content
,
positioning:
positioning
??
this
.
positioning
,
...
...
@@ -404,6 +409,7 @@ class NoteModel {
final
map
=
<
String
,
dynamic
>{};
map
[
'notes_id'
]
=
notesId
;
map
[
'types'
]
=
types
;
map
[
'is_my'
]
=
isMy
;
map
[
'chapter_id'
]
=
chapterId
;
map
[
'content'
]
=
content
;
map
[
'positioning'
]
=
positioning
;
...
...
@@ -530,6 +536,7 @@ class DiscussModel {
this
.
personName
,
this
.
commentAll
,
this
.
personPic
,
this
.
isMy
,
});
DiscussModel
.
fromJson
(
dynamic
json
)
{
...
...
@@ -550,6 +557,8 @@ class DiscussModel {
replacePersonPic
=
json
[
'replace_person_pic'
];
personName
=
json
[
'person_name'
];
personPic
=
json
[
'person_pic'
];
isMy
=
json
[
'is_my'
];
if
(
json
[
'comment_all'
]
!=
null
)
{
commentAll
=
[];
json
[
'comment_all'
].
forEach
((
v
)
{
...
...
@@ -569,6 +578,7 @@ class DiscussModel {
num
?
personId
;
num
?
goodNum
;
num
?
replyNum
;
num
?
isMy
;
String
?
createTime
;
String
?
replacePersonName
;
String
?
replacePersonPic
;
...
...
@@ -588,6 +598,7 @@ class DiscussModel {
num
?
personId
,
num
?
goodNum
,
num
?
replyNum
,
num
?
isMy
,
String
?
createTime
,
String
?
replacePersonName
,
String
?
replacePersonPic
,
...
...
@@ -607,6 +618,7 @@ class DiscussModel {
personId:
personId
??
this
.
personId
,
goodNum:
goodNum
??
this
.
goodNum
,
replyNum:
replyNum
??
this
.
replyNum
,
isMy:
isMy
??
this
.
isMy
,
createTime:
createTime
??
this
.
createTime
,
replacePersonName:
replacePersonName
??
this
.
replacePersonName
,
replacePersonPic:
replacePersonPic
??
this
.
replacePersonPic
,
...
...
@@ -631,6 +643,7 @@ class DiscussModel {
map
[
'person_id'
]
=
personId
;
map
[
'good_num'
]
=
goodNum
;
map
[
'reply_num'
]
=
replyNum
;
map
[
'is_my'
]
=
isMy
;
map
[
'create_time'
]
=
createTime
;
map
[
'replace_person_name'
]
=
replacePersonName
;
map
[
'replace_person_pic'
]
=
replacePersonPic
;
...
...
lib/pages/read_web/controller.dart
浏览文件 @
5005e23c
...
...
@@ -81,6 +81,8 @@ class ReadController extends FullLifeCycleController with GetSingleTickerProvide
late
TextEditingController
searchInput
=
TextEditingController
();
just_audio
.
AudioPlayer
audioPlayer
=
just_audio
.
AudioPlayer
();
///------------------------------------------ 页面 生命周期--------------------------------------------------------
...
...
@@ -316,7 +318,6 @@ class ReadController extends FullLifeCycleController with GetSingleTickerProvide
}
// 停止录音
void
stopRecorder
()
async
{
just_audio
.
AudioPlayer
audioPlayer
=
just_audio
.
AudioPlayer
();
startRecording
=
false
;
final
path
=
await
_mRecorder
.
stopRecorder
();
var
duration
=
await
audioPlayer
.
setFilePath
(
path
!);
...
...
@@ -354,6 +355,27 @@ class ReadController extends FullLifeCycleController with GetSingleTickerProvide
clearDiscussAudios
();
}
// 播放音频
void
playAudio
(
AudioModel
audioModel
){
if
(
audioPlayer
.
playerState
.
playing
){
audioPlayer
.
stop
();
audioModel
.
currentDuration
=
'0:00:00'
;
// if(currentPlayMediaModel.id == mediaModel.id){
// return;
// }
}
// 本地音频
audioPlayer
.
setFilePath
(
audioModel
.
path
);
audioPlayer
.
play
();
audioPlayer
.
positionStream
.
listen
((
position
)
{
String
temp
=
Tools
.
formatDuration
(
position
);
Console
.
log
(
'播放时间---------------------
$temp
'
);
audioModel
.
currentDuration
=
temp
;
update
();
});
// currentPlayMediaModel = mediaModel;
}
// 添加讨论图片
void
addDiscussInputImages
(
String
path
){
discussInputImages
.
add
(
path
);
...
...
@@ -874,4 +896,5 @@ class AudioModel {
AudioModel
({
required
this
.
path
,
required
this
.
duration
});
String
path
;
String
duration
;
late
String
currentDuration
;
}
lib/pages/read_web/note_controller.dart
浏览文件 @
5005e23c
...
...
@@ -101,6 +101,16 @@ class NoteController extends GetxController {
bookId:
bookDetailModel
.
bookId
.
toString
(),
chapterId:
chapterId
);
for
(
NoteModel
noteModel
in
result
){
if
(
noteModel
.
noteContent
!.
audio
!.
isNotEmpty
){
for
(
MediaModel
mediaModel
in
noteModel
.
noteContent
!.
audio
!){
Duration
?
duration
=
await
just_audio
.
AudioPlayer
().
setUrl
(
mediaModel
.
content
??
''
);
mediaModel
.
duration
=
Tools
.
formatDuration
(
duration
!);
}
}
}
// 如果是刷新 清理数据
if
(
isRefresh
)
notes
.
clear
();
notes
.
addAll
(
result
);
...
...
lib/pages/read_web/widgets/category.dart
浏览文件 @
5005e23c
...
...
@@ -61,7 +61,7 @@ class _ReadCategoryPageState extends State<ReadCategoryPage> {
child:
CustomInputSearch
(
controller:
widget
.
controller
.
searchInput
,
readOnly:
false
,
hintText:
'搜索全文
---目录
'
,
hintText:
'搜索全文'
,
onTap:
()
{
// context.pushNamed(Routes.msgs);
},
...
...
lib/pages/read_web/widgets/discuss.dart
浏览文件 @
5005e23c
...
...
@@ -62,7 +62,7 @@ class _ReadDiscussPageState extends State<ReadDiscussPage> {
child:
CustomInputSearch
(
controller:
controller
.
searchInput
,
readOnly:
false
,
hintText:
'搜索全文
---讨论
'
,
hintText:
'搜索全文'
,
onTap:
()
{
// context.pushNamed(Routes.msgs);
},
...
...
lib/pages/read_web/widgets/input_discuss.dart
浏览文件 @
5005e23c
...
...
@@ -125,23 +125,29 @@ class _ReadInputDiscussState extends State<ReadInputDiscuss> {
physics:
const
NeverScrollableScrollPhysics
(),
shrinkWrap:
true
,
itemBuilder:
(
BuildContext
context
,
int
index
){
return
Container
(
height:
20
.
w
,
margin:
EdgeInsets
.
only
(
right:
130
.
w
),
AudioModel
audioModel
=
widget
.
controller
.
discussInputAudios
[
index
];
return
GestureDetector
(
onTap:
(){
widget
.
controller
.
playAudio
(
audioModel
);
},
child:
Container
(
margin:
EdgeInsets
.
only
(
top:
5
.
w
),
padding:
EdgeInsets
.
only
(
right:
20
.
w
,
left:
10
.
w
),
decoration:
BoxDecoration
(
borderRadius:
BorderRadius
.
circular
(
10
.
w
),
color:
Colours
.
cF9
,
),
child:
Row
(
// mainAxisSize: MainAxisSize.min,
mainAxisAlignment:
MainAxisAlignment
.
spaceBetween
,
children:
[
Image
.
asset
(
'assets/images/audio.png'
),
// Text('0:00/1:52',style: TextStyle(fontSize: 10.w,height: 1.4,color: Colours.c9),)
],
height:
20
.
w
,
margin:
EdgeInsets
.
only
(
right:
130
.
w
),
child:
Container
(
margin:
EdgeInsets
.
only
(
top:
5
.
w
),
padding:
EdgeInsets
.
only
(
right:
20
.
w
,
left:
10
.
w
),
decoration:
BoxDecoration
(
borderRadius:
BorderRadius
.
circular
(
10
.
w
),
color:
Colours
.
cF9
,
),
child:
Row
(
// mainAxisSize: MainAxisSize.min,
mainAxisAlignment:
MainAxisAlignment
.
spaceBetween
,
children:
[
Image
.
asset
(
'assets/images/audio.png'
),
// Text('0:00/1:52',style: TextStyle(fontSize: 10.w,height: 1.4,color: Colours.c9),)
],
),
),
),
);
...
...
lib/pages/read_web/widgets/note.dart
浏览文件 @
5005e23c
...
...
@@ -60,7 +60,7 @@ class _ReadNotePageState extends State<ReadNotePage> {
child:
CustomInputSearch
(
controller:
controller
.
searchInput
,
readOnly:
false
,
hintText:
'搜索全文
---笔记
'
,
hintText:
'搜索全文'
,
onTap:
()
{
// context.pushNamed(Routes.msgs);
},
...
...
lib/pages/user_discuss_des/widgets/discuss.dart
浏览文件 @
5005e23c
...
...
@@ -117,7 +117,7 @@ class _BuildDiscussState extends State<BuildDiscuss> {
type
==
0
?
Column
(
crossAxisAlignment:
CrossAxisAlignment
.
start
,
children:
[
Text
(
model
.
content
?.
text
?.
content
??
'审核中'
,
style:
TextStyle
(
fontSize:
13
.
w
,
height:
1.5
,
color:
Colours
.
c3
),),
Text
(
_showText
(
model
)
,
style:
TextStyle
(
fontSize:
13
.
w
,
height:
1.5
,
color:
Colours
.
c3
),),
Gaps
.
vGaps10
,
_buildImageGridView
()
],
...
...
@@ -174,6 +174,40 @@ class _BuildDiscussState extends State<BuildDiscuss> {
);
}
String
_showText
(
DiscussModel
discussModel
){
String
text
=
''
;
// 是我的
if
(
discussModel
.
isMy
==
1
){
// 审核中
if
(
discussModel
.
content
?.
text
?.
privacyStatus
==
0
||
discussModel
.
content
?.
text
?.
privacyStatus
==
2
){
text
=
'
${discussModel.content?.text?.content}
(审核中)'
;
}
// 审核未通过
else
if
(
discussModel
.
content
?.
text
?.
privacyStatus
==-
1
){
text
=
'
${discussModel.content?.text?.content}
(审核未通过)'
;
}
// 审核通过
else
{
text
=
'
${discussModel.content?.text?.content}
'
;
}
}
else
{
// 审核中
if
(
discussModel
.
content
?.
text
?.
privacyStatus
==
0
||
discussModel
.
content
?.
text
?.
privacyStatus
==
2
){
text
=
'(审核中)'
;
}
// 审核未通过
else
if
(
discussModel
.
content
?.
text
?.
privacyStatus
==-
1
){
text
=
'(审核未通过)'
;
}
// 审核通过
else
{
text
=
'
${discussModel.content?.text?.content}
'
;
}
}
return
text
;
}
Widget
_buildListView
(
List
<
DiscussModel
>
data
){
return
ListView
.
builder
(
physics:
const
NeverScrollableScrollPhysics
(),
...
...
@@ -199,7 +233,31 @@ class _BuildDiscussState extends State<BuildDiscuss> {
),
itemBuilder:
(
BuildContext
context
,
int
index
)
{
MediaModel
?
mediaModel
=
widget
.
model
.
content
?.
image
?[
index
];
return
CustomImage
.
network
(
url:
widget
.
model
?.
content
?.
image
?[
index
].
content
??
''
,
fit:
BoxFit
.
cover
,);
return
Stack
(
children:
[
Positioned
(
left:
0
,
right:
0
,
top:
0
,
bottom:
0
,
child:
CustomImage
.
network
(
url:
mediaModel
?.
content
??
''
,
fit:
BoxFit
.
cover
,)
),
Visibility
(
visible:
mediaModel
?.
privacyStatus
==
0
?
true
:
false
,
child:
Positioned
(
left:
0
,
right:
0
,
top:
0
,
bottom:
0
,
child:
Container
(
alignment:
Alignment
.
center
,
color:
widget
.
model
.
isMy
==
1
?
Colours
.
c9
.
withOpacity
(
0.5
):
Colours
.
c9
.
withOpacity
(
1
),
child:
Text
(
'(审核中)'
,
style:
TextStyle
(
fontSize:
11
.
w
,
height:
1.5
,
color:
AppTheme
.
primary
),),
)
),
),
],
);
// return Container(
// color: Colors.red,
// );
...
...
lib/pages/user_notes_des/widgets/note.dart
浏览文件 @
5005e23c
...
...
@@ -65,18 +65,12 @@ class BuildNote extends StatelessWidget {
Row
(
crossAxisAlignment:
CrossAxisAlignment
.
center
,
children:
[
Text
(
model
.
noteContent
?.
text
?.
content
??
''
,
style:
TextStyle
(
Text
(
_showText
(
model
)
,
style:
TextStyle
(
fontSize:
14
.
w
,
height:
1.5
,
// color: Colors.red,
color:
Colours
.
c3
),),
model
.
noteContent
?.
text
?.
privacyStatus
==
0
?
Text
(
'(审核中)'
,
style:
TextStyle
(
fontSize:
11
.
w
,
height:
1.5
,
// color: Colors.red,
color:
AppTheme
.
primary
),):
const
SizedBox
(),
],
),
Gaps
.
vGaps13
,
...
...
@@ -103,6 +97,41 @@ class BuildNote extends StatelessWidget {
);
}
String
_showText
(
NoteModel
discussModel
){
String
text
=
''
;
// 是我的
if
(
discussModel
.
isMy
==
1
){
// 审核中
if
(
discussModel
.
noteContent
?.
text
?.
privacyStatus
==
0
||
discussModel
.
noteContent
?.
text
?.
privacyStatus
==
2
){
text
=
'
${discussModel.noteContent?.text?.content}
(审核中)'
;
}
// 审核未通过
else
if
(
discussModel
.
noteContent
?.
text
?.
privacyStatus
==-
1
){
text
=
'
${discussModel.noteContent?.text?.content}
(审核未通过)'
;
}
// 审核通过
else
{
text
=
'
${discussModel.noteContent?.text?.content}
'
;
}
}
else
{
// 审核中
if
(
discussModel
.
noteContent
?.
text
?.
privacyStatus
==
0
||
discussModel
.
noteContent
?.
text
?.
privacyStatus
==
2
){
text
=
'(审核中)'
;
}
// 审核未通过
else
if
(
discussModel
.
noteContent
?.
text
?.
privacyStatus
==-
1
){
text
=
'(审核未通过)'
;
}
// 审核通过
else
{
text
=
'
${discussModel.noteContent?.text?.content}
'
;
}
}
return
text
;
}
// 图片
Widget
_buildImageGridView
(){
return
GridView
.
builder
(
...
...
@@ -135,7 +164,7 @@ class BuildNote extends StatelessWidget {
bottom:
0
,
child:
Container
(
alignment:
Alignment
.
center
,
color:
Colours
.
c9
.
withOpacity
(
0.5
),
color:
model
.
isMy
==
1
?
Colours
.
c9
.
withOpacity
(
0.5
):
Colours
.
c9
.
withOpacity
(
1
),
child:
Text
(
'(审核中)'
,
style:
TextStyle
(
fontSize:
14
.
w
,
height:
1.5
,
color:
AppTheme
.
primary
),),
)
),
...
...
lib/utils/constants.dart
浏览文件 @
5005e23c
...
...
@@ -3,7 +3,8 @@ part of utils;
// 服务器地址
// const String kServerUrl = 'https://app.vning.com';
// const String kServerUrl = 'http://192.168.11.88:81';
const
String
kServerUrl
=
'http://1507.superge.cn:81'
;
const
String
kServerUrl
=
'http://8.141.148.247:7421'
;
// const String kServerUrl = 'http://1507.superge.cn:81';
const
String
kLocalToken
=
'local_token'
;
const
String
kLocalAccessToken
=
'local_access_token'
;
const
String
kLocalAccount
=
'local_account'
;
...
...
@@ -18,13 +19,13 @@ const String kUserPriAgreement = '/html/agreement/pri_agreement.html';
const
String
kUserRechargeAgreement
=
'/html/agreement/rec_agreement.html'
;
// 错题详情页 html
const
String
kUserWrongDes
=
'
http://150.158.138.40:9200
/evaluating_wrong.html'
;
const
String
kUserWrongDes
=
'
$kServerUrl
/html/app
/evaluating_wrong.html'
;
// 阅读页 html
const
String
kReadBook
=
'
http://150.158.138.40:9200
/read.html'
;
const
String
kReadBook
=
'
$kServerUrl
/html/app
/read.html'
;
// 答题页
const
String
kAnswer
=
'
http://150.158.138.40:9200
/evaluating.html'
;
const
String
kAnswer
=
'
$kServerUrl
/html/app
/evaluating.html'
;
// 答题结果页
const
String
kAnswerResult
=
'
http://150.158.138.40:9200
/evaluating_result.html'
;
const
String
kAnswerResult
=
'
$kServerUrl
/html/app
/evaluating_result.html'
;
...
...
pubspec.lock
浏览文件 @
5005e23c
...
...
@@ -6,7 +6,7 @@ packages:
description:
name: archive
sha256: "22600aa1e926be775fa5fe7e6894e7fb3df9efda8891c73f70fb3262399a432d"
url: "https://pub.
dev
"
url: "https://pub.
flutter-io.cn
"
source: hosted
version: "3.4.10"
args:
...
...
@@ -14,7 +14,7 @@ packages:
description:
name: args
sha256: eef6c46b622e0494a36c5a12d10d77fb4e855501a91c1b9ef9339326e58f0596
url: "https://pub.
dev
"
url: "https://pub.
flutter-io.cn
"
source: hosted
version: "2.4.2"
asn1lib:
...
...
@@ -22,7 +22,7 @@ packages:
description:
name: asn1lib
sha256: c9c85fedbe2188b95133cbe960e16f5f448860f7133330e272edbbca5893ddc6
url: "https://pub.
dev
"
url: "https://pub.
flutter-io.cn
"
source: hosted
version: "1.5.2"
async:
...
...
@@ -30,7 +30,7 @@ packages:
description:
name: async
sha256: "947bfcf187f74dbc5e146c9eb9c0f10c9f8b30743e341481c1e2ed3ecc18c20c"
url: "https://pub.
dev
"
url: "https://pub.
flutter-io.cn
"
source: hosted
version: "2.11.0"
audio_session:
...
...
@@ -38,7 +38,7 @@ packages:
description:
name: audio_session
sha256: "6fdf255ed3af86535c96452c33ecff1245990bb25a605bfb1958661ccc3d467f"
url: "https://pub.
dev
"
url: "https://pub.
flutter-io.cn
"
source: hosted
version: "0.1.18"
azlistview:
...
...
@@ -46,7 +46,7 @@ packages:
description:
name: azlistview
sha256: "93e865f11777a271b439f0d6b00799c0797e9daeec2e082a2e01373809c4b90d"
url: "https://pub.
dev
"
url: "https://pub.
flutter-io.cn
"
source: hosted
version: "2.0.0"
badges:
...
...
@@ -54,7 +54,7 @@ packages:
description:
name: badges
sha256: a7b6bbd60dce418df0db3058b53f9d083c22cdb5132a052145dc267494df0b84
url: "https://pub.
dev
"
url: "https://pub.
flutter-io.cn
"
source: hosted
version: "3.1.2"
boolean_selector:
...
...
@@ -62,7 +62,7 @@ packages:
description:
name: boolean_selector
sha256: "6cfb5af12253eaf2b368f07bacc5a80d1301a071c73360d746b7f2e32d762c66"
url: "https://pub.
dev
"
url: "https://pub.
flutter-io.cn
"
source: hosted
version: "2.1.1"
carousel_slider:
...
...
@@ -70,7 +70,7 @@ packages:
description:
name: carousel_slider
sha256: "9c695cc963bf1d04a47bd6021f68befce8970bcd61d24938e1fb0918cf5d9c42"
url: "https://pub.
dev
"
url: "https://pub.
flutter-io.cn
"
source: hosted
version: "4.2.1"
characters:
...
...
@@ -78,7 +78,7 @@ packages:
description:
name: characters
sha256: "04a925763edad70e8443c99234dc3328f442e811f1d8fd1a72f1c8ad0f69a605"
url: "https://pub.
dev
"
url: "https://pub.
flutter-io.cn
"
source: hosted
version: "1.3.0"
clock:
...
...
@@ -86,7 +86,7 @@ packages:
description:
name: clock
sha256: cb6d7f03e1de671e34607e909a7213e31d7752be4fb66a86d29fe1eb14bfb5cf
url: "https://pub.
dev
"
url: "https://pub.
flutter-io.cn
"
source: hosted
version: "1.1.1"
collection:
...
...
@@ -94,7 +94,7 @@ packages:
description:
name: collection
sha256: "4a07be6cb69c84d677a6c3096fcf960cc3285a8330b4603e0d463d15d9bd934c"
url: "https://pub.
dev
"
url: "https://pub.
flutter-io.cn
"
source: hosted
version: "1.17.1"
connectivity_plus:
...
...
@@ -102,7 +102,7 @@ packages:
description:
name: connectivity_plus
sha256: "224a77051d52a11fbad53dd57827594d3bd24f945af28bd70bab376d68d437f0"
url: "https://pub.
dev
"
url: "https://pub.
flutter-io.cn
"
source: hosted
version: "5.0.2"
connectivity_plus_platform_interface:
...
...
@@ -110,7 +110,7 @@ packages:
description:
name: connectivity_plus_platform_interface
sha256: cf1d1c28f4416f8c654d7dc3cd638ec586076255d407cef3ddbdaf178272a71a
url: "https://pub.
dev
"
url: "https://pub.
flutter-io.cn
"
source: hosted
version: "1.2.4"
convert:
...
...
@@ -118,7 +118,7 @@ packages:
description:
name: convert
sha256: f08428ad63615f96a27e34221c65e1a451439b5f26030f78d790f461c686d65d
url: "https://pub.
dev
"
url: "https://pub.
flutter-io.cn
"
source: hosted
version: "3.0.1"
cross_file:
...
...
@@ -126,7 +126,7 @@ packages:
description:
name: cross_file
sha256: "2f9d2cbccb76127ba28528cb3ae2c2326a122446a83de5a056aaa3880d3882c5"
url: "https://pub.
dev
"
url: "https://pub.
flutter-io.cn
"
source: hosted
version: "0.3.3+7"
crypto:
...
...
@@ -134,7 +134,7 @@ packages:
description:
name: crypto
sha256: ff625774173754681d66daaf4a448684fb04b78f902da9cb3d308c19cc5e8bab
url: "https://pub.
dev
"
url: "https://pub.
flutter-io.cn
"
source: hosted
version: "3.0.3"
cupertino_icons:
...
...
@@ -142,7 +142,7 @@ packages:
description:
name: cupertino_icons
sha256: d57953e10f9f8327ce64a508a355f0b1ec902193f66288e8cb5070e7c47eeb2d
url: "https://pub.
dev
"
url: "https://pub.
flutter-io.cn
"
source: hosted
version: "1.0.6"
dbus:
...
...
@@ -150,7 +150,7 @@ packages:
description:
name: dbus
sha256: "365c771ac3b0e58845f39ec6deebc76e3276aa9922b0cc60840712094d9047ac"
url: "https://pub.
dev
"
url: "https://pub.
flutter-io.cn
"
source: hosted
version: "0.7.10"
decimal:
...
...
@@ -158,7 +158,7 @@ packages:
description:
name: decimal
sha256: "24a261d5d5c87e86c7651c417a5dbdf8bcd7080dd592533910e8d0505a279f21"
url: "https://pub.
dev
"
url: "https://pub.
flutter-io.cn
"
source: hosted
version: "2.3.3"
dio:
...
...
@@ -166,7 +166,7 @@ packages:
description:
name: dio
sha256: "417e2a6f9d83ab396ec38ff4ea5da6c254da71e4db765ad737a42af6930140b7"
url: "https://pub.
dev
"
url: "https://pub.
flutter-io.cn
"
source: hosted
version: "5.3.3"
easy_refresh:
...
...
@@ -174,7 +174,7 @@ packages:
description:
name: easy_refresh
sha256: "77b025ea49f27b5ebc5eef40a6678be52564c293bd97ce91a4088d6646478329"
url: "https://pub.
dev
"
url: "https://pub.
flutter-io.cn
"
source: hosted
version: "3.3.2+1"
encrypt:
...
...
@@ -182,7 +182,7 @@ packages:
description:
name: encrypt
sha256: "62d9aa4670cc2a8798bab89b39fc71b6dfbacf615de6cf5001fb39f7e4a996a2"
url: "https://pub.
dev
"
url: "https://pub.
flutter-io.cn
"
source: hosted
version: "5.0.3"
extended_image:
...
...
@@ -190,7 +190,7 @@ packages:
description:
name: extended_image
sha256: e77d18f956649ba6e5ecebd0cb68542120886336a75ee673788145bd4c3f0767
url: "https://pub.
dev
"
url: "https://pub.
flutter-io.cn
"
source: hosted
version: "8.0.2"
extended_image_library:
...
...
@@ -198,7 +198,7 @@ packages:
description:
name: extended_image_library
sha256: bb8d08c504ebc73d476ec1c99451a61f12e95538869e734fc4f55a3a2d5c98ec
url: "https://pub.
dev
"
url: "https://pub.
flutter-io.cn
"
source: hosted
version: "3.5.3"
fake_async:
...
...
@@ -206,7 +206,7 @@ packages:
description:
name: fake_async
sha256: "511392330127add0b769b75a987850d136345d9227c6b94c96a04cf4a391bf78"
url: "https://pub.
dev
"
url: "https://pub.
flutter-io.cn
"
source: hosted
version: "1.3.1"
ffi:
...
...
@@ -214,7 +214,7 @@ packages:
description:
name: ffi
sha256: "7bf0adc28a23d395f19f3f1eb21dd7cfd1dd9f8e1c50051c069122e6853bc878"
url: "https://pub.
dev
"
url: "https://pub.
flutter-io.cn
"
source: hosted
version: "2.1.0"
file:
...
...
@@ -222,7 +222,7 @@ packages:
description:
name: file
sha256: "5fc22d7c25582e38ad9a8515372cd9a93834027aacf1801cf01164dac0ffa08c"
url: "https://pub.
dev
"
url: "https://pub.
flutter-io.cn
"
source: hosted
version: "7.0.0"
flutter:
...
...
@@ -235,7 +235,7 @@ packages:
description:
name: flutter_app_update
sha256: "2202e6e6d49eacc571304e5a6a5404f893382b492029d01d33b3bfb9af1c2f25"
url: "https://pub.
dev
"
url: "https://pub.
flutter-io.cn
"
source: hosted
version: "3.0.4"
flutter_cache_manager:
...
...
@@ -243,7 +243,7 @@ packages:
description:
name: flutter_cache_manager
sha256: "8207f27539deb83732fdda03e259349046a39a4c767269285f449ade355d54ba"
url: "https://pub.
dev
"
url: "https://pub.
flutter-io.cn
"
source: hosted
version: "3.3.1"
flutter_easyloading:
...
...
@@ -251,7 +251,7 @@ packages:
description:
name: flutter_easyloading
sha256: ba21a3c883544e582f9cc455a4a0907556714e1e9cf0eababfcb600da191d17c
url: "https://pub.
dev
"
url: "https://pub.
flutter-io.cn
"
source: hosted
version: "3.0.5"
flutter_inapp_purchase:
...
...
@@ -259,7 +259,7 @@ packages:
description:
name: flutter_inapp_purchase
sha256: d67544e703439feefe91cab9cb4920cffc0f1576f7ce51a78e3a0a3c5f7d3f1e
url: "https://pub.
dev
"
url: "https://pub.
flutter-io.cn
"
source: hosted
version: "5.6.1"
flutter_inappwebview:
...
...
@@ -267,7 +267,7 @@ packages:
description:
name: flutter_inappwebview
sha256: "3e9a443a18ecef966fb930c3a76ca5ab6a7aafc0c7b5e14a4a850cf107b09959"
url: "https://pub.
dev
"
url: "https://pub.
flutter-io.cn
"
source: hosted
version: "6.0.0"
flutter_inappwebview_android:
...
...
@@ -275,7 +275,7 @@ packages:
description:
name: flutter_inappwebview_android
sha256: d247f6ed417f1f8c364612fa05a2ecba7f775c8d0c044c1d3b9ee33a6515c421
url: "https://pub.
dev
"
url: "https://pub.
flutter-io.cn
"
source: hosted
version: "1.0.13"
flutter_inappwebview_internal_annotations:
...
...
@@ -283,7 +283,7 @@ packages:
description:
name: flutter_inappwebview_internal_annotations
sha256: "5f80fd30e208ddded7dbbcd0d569e7995f9f63d45ea3f548d8dd4c0b473fb4c8"
url: "https://pub.
dev
"
url: "https://pub.
flutter-io.cn
"
source: hosted
version: "1.1.1"
flutter_inappwebview_ios:
...
...
@@ -291,7 +291,7 @@ packages:
description:
name: flutter_inappwebview_ios
sha256: f363577208b97b10b319cd0c428555cd8493e88b468019a8c5635a0e4312bd0f
url: "https://pub.
dev
"
url: "https://pub.
flutter-io.cn
"
source: hosted
version: "1.0.13"
flutter_inappwebview_macos:
...
...
@@ -299,7 +299,7 @@ packages:
description:
name: flutter_inappwebview_macos
sha256: b55b9e506c549ce88e26580351d2c71d54f4825901666bd6cfa4be9415bb2636
url: "https://pub.
dev
"
url: "https://pub.
flutter-io.cn
"
source: hosted
version: "1.0.11"
flutter_inappwebview_platform_interface:
...
...
@@ -307,7 +307,7 @@ packages:
description:
name: flutter_inappwebview_platform_interface
sha256: "545fd4c25a07d2775f7d5af05a979b2cac4fbf79393b0a7f5d33ba39ba4f6187"
url: "https://pub.
dev
"
url: "https://pub.
flutter-io.cn
"
source: hosted
version: "1.0.10"
flutter_inappwebview_web:
...
...
@@ -315,7 +315,7 @@ packages:
description:
name: flutter_inappwebview_web
sha256: d8c680abfb6fec71609a700199635d38a744df0febd5544c5a020bd73de8ee07
url: "https://pub.
dev
"
url: "https://pub.
flutter-io.cn
"
source: hosted
version: "1.0.8"
flutter_lints:
...
...
@@ -323,7 +323,7 @@ packages:
description:
name: flutter_lints
sha256: a25a15ebbdfc33ab1cd26c63a6ee519df92338a9c10f122adda92938253bef04
url: "https://pub.
dev
"
url: "https://pub.
flutter-io.cn
"
source: hosted
version: "2.0.3"
flutter_localizations:
...
...
@@ -336,7 +336,7 @@ packages:
description:
name: flutter_oss_aliyun
sha256: d4e7423a29a3ff41aff6ab8278e0371716a3c3c1d086f937a9695a70ea8f8d39
url: "https://pub.
dev
"
url: "https://pub.
flutter-io.cn
"
source: hosted
version: "6.4.1"
flutter_plugin_android_lifecycle:
...
...
@@ -344,7 +344,7 @@ packages:
description:
name: flutter_plugin_android_lifecycle
sha256: b068ffc46f82a55844acfa4fdbb61fad72fa2aef0905548419d97f0f95c456da
url: "https://pub.
dev
"
url: "https://pub.
flutter-io.cn
"
source: hosted
version: "2.0.17"
flutter_screenutil:
...
...
@@ -352,7 +352,7 @@ packages:
description:
name: flutter_screenutil
sha256: b3e155ee4f2cf5b21a2e15182d1c49c848147ed47f62083fc9a9beccb85f59f9
url: "https://pub.
dev
"
url: "https://pub.
flutter-io.cn
"
source: hosted
version: "5.8.2"
flutter_slidable:
...
...
@@ -360,7 +360,7 @@ packages:
description:
name: flutter_slidable
sha256: "19ed4813003a6ff4e9c6bcce37e792a2a358919d7603b2b31ff200229191e44c"
url: "https://pub.
dev
"
url: "https://pub.
flutter-io.cn
"
source: hosted
version: "3.0.1"
flutter_sound:
...
...
@@ -368,7 +368,7 @@ packages:
description:
name: flutter_sound
sha256: "090a4694b11ecc744c2010621c4ffc5fe7c3079d304ea014961a72c7b72cfe6c"
url: "https://pub.
dev
"
url: "https://pub.
flutter-io.cn
"
source: hosted
version: "9.2.13"
flutter_sound_platform_interface:
...
...
@@ -376,7 +376,7 @@ packages:
description:
name: flutter_sound_platform_interface
sha256: "4537eaeb58a32748c42b621ad6116f7f4c6ee0a8d6ffaa501b165fe1c9df4753"
url: "https://pub.
dev
"
url: "https://pub.
flutter-io.cn
"
source: hosted
version: "9.2.13"
flutter_sound_web:
...
...
@@ -384,7 +384,7 @@ packages:
description:
name: flutter_sound_web
sha256: ad4ca92671a1879e1f613e900bbbdb8170b20d57d1e4e6363018fe56b055594f
url: "https://pub.
dev
"
url: "https://pub.
flutter-io.cn
"
source: hosted
version: "9.2.13"
flutter_spinkit:
...
...
@@ -392,7 +392,7 @@ packages:
description:
name: flutter_spinkit
sha256: b39c753e909d4796906c5696a14daf33639a76e017136c8d82bf3e620ce5bb8e
url: "https://pub.
dev
"
url: "https://pub.
flutter-io.cn
"
source: hosted
version: "5.2.0"
flutter_star:
...
...
@@ -400,7 +400,7 @@ packages:
description:
name: flutter_star
sha256: "7dc10b8b3667ace2aa575a37ea0c00558a7514019cfe7e76322573d85b72a472"
url: "https://pub.
dev
"
url: "https://pub.
flutter-io.cn
"
source: hosted
version: "1.2.0"
flutter_test:
...
...
@@ -413,7 +413,7 @@ packages:
description:
name: flutter_tts
sha256: cbb3fd43b946e62398560235469e6113e4fe26c40eab1b7cb5e7c417503fb3a8
url: "https://pub.
dev
"
url: "https://pub.
flutter-io.cn
"
source: hosted
version: "3.8.5"
flutter_web_plugins:
...
...
@@ -426,7 +426,7 @@ packages:
description:
name: fluwx
sha256: "5cba72dff6b89062527c5042fab55ffbad1420ee93503a9ed72bc4f1c4b54a30"
url: "https://pub.
dev
"
url: "https://pub.
flutter-io.cn
"
source: hosted
version: "4.4.10"
get:
...
...
@@ -434,7 +434,7 @@ packages:
description:
name: get
sha256: "2ba20a47c8f1f233bed775ba2dd0d3ac97b4cf32fc17731b3dfc672b06b0e92a"
url: "https://pub.
dev
"
url: "https://pub.
flutter-io.cn
"
source: hosted
version: "4.6.5"
go_router:
...
...
@@ -442,7 +442,7 @@ packages:
description:
name: go_router
sha256: "2aa884667eeda3a1c461f31e72af1f77984ab0f29450d8fb12ec1f7bc53eea14"
url: "https://pub.
dev
"
url: "https://pub.
flutter-io.cn
"
source: hosted
version: "10.1.0"
http:
...
...
@@ -450,7 +450,7 @@ packages:
description:
name: http
sha256: "759d1a329847dd0f39226c688d3e06a6b8679668e350e2891a6474f8b4bb8525"
url: "https://pub.
dev
"
url: "https://pub.
flutter-io.cn
"
source: hosted
version: "1.1.0"
http_client_helper:
...
...
@@ -458,7 +458,7 @@ packages:
description:
name: http_client_helper
sha256: "8a9127650734da86b5c73760de2b404494c968a3fd55602045ffec789dac3cb1"
url: "https://pub.
dev
"
url: "https://pub.
flutter-io.cn
"
source: hosted
version: "3.0.0"
http_parser:
...
...
@@ -466,7 +466,7 @@ packages:
description:
name: http_parser
sha256: "2aa08ce0341cc9b354a498388e30986515406668dbcc4f7c950c3e715496693b"
url: "https://pub.
dev
"
url: "https://pub.
flutter-io.cn
"
source: hosted
version: "4.0.2"
image_picker:
...
...
@@ -474,7 +474,7 @@ packages:
description:
name: image_picker
sha256: "9978d3510af4e6a902e545ce19229b926e6de6a1828d6134d3aab2e129a4d270"
url: "https://pub.
dev
"
url: "https://pub.
flutter-io.cn
"
source: hosted
version: "0.8.7+5"
image_picker_android:
...
...
@@ -482,7 +482,7 @@ packages:
description:
name: image_picker_android
sha256: "39f2bfe497e495450c81abcd44b62f56c2a36a37a175da7d137b4454977b51b1"
url: "https://pub.
dev
"
url: "https://pub.
flutter-io.cn
"
source: hosted
version: "0.8.9+3"
image_picker_for_web:
...
...
@@ -490,7 +490,7 @@ packages:
description:
name: image_picker_for_web
sha256: "869fe8a64771b7afbc99fc433a5f7be2fea4d1cb3d7c11a48b6b579eb9c797f0"
url: "https://pub.
dev
"
url: "https://pub.
flutter-io.cn
"
source: hosted
version: "2.2.0"
image_picker_ios:
...
...
@@ -498,7 +498,7 @@ packages:
description:
name: image_picker_ios
sha256: fadafce49e8569257a0cad56d24438a6fa1f0cbd7ee0af9b631f7492818a4ca3
url: "https://pub.
dev
"
url: "https://pub.
flutter-io.cn
"
source: hosted
version: "0.8.9+1"
image_picker_platform_interface:
...
...
@@ -506,7 +506,7 @@ packages:
description:
name: image_picker_platform_interface
sha256: fa4e815e6fcada50e35718727d83ba1c92f1edf95c0b4436554cec301b56233b
url: "https://pub.
dev
"
url: "https://pub.
flutter-io.cn
"
source: hosted
version: "2.9.3"
intl:
...
...
@@ -514,7 +514,7 @@ packages:
description:
name: intl
sha256: a3715e3bc90294e971cb7dc063fbf3cd9ee0ebf8604ffeafabd9e6f16abbdbe6
url: "https://pub.
dev
"
url: "https://pub.
flutter-io.cn
"
source: hosted
version: "0.18.0"
ionicons:
...
...
@@ -522,7 +522,7 @@ packages:
description:
name: ionicons
sha256: "5496bc65a16115ecf05b15b78f494ee4a8869504357668f0a11d689e970523cf"
url: "https://pub.
dev
"
url: "https://pub.
flutter-io.cn
"
source: hosted
version: "0.2.2"
js:
...
...
@@ -530,7 +530,7 @@ packages:
description:
name: js
sha256: f2c445dce49627136094980615a031419f7f3eb393237e4ecd97ac15dea343f3
url: "https://pub.
dev
"
url: "https://pub.
flutter-io.cn
"
source: hosted
version: "0.6.7"
just_audio:
...
...
@@ -538,7 +538,7 @@ packages:
description:
name: just_audio
sha256: b607cd1a43bac03d85c3aaee00448ff4a589ef2a77104e3d409889ff079bf823
url: "https://pub.
dev
"
url: "https://pub.
flutter-io.cn
"
source: hosted
version: "0.9.36"
just_audio_platform_interface:
...
...
@@ -546,7 +546,7 @@ packages:
description:
name: just_audio_platform_interface
sha256: c3dee0014248c97c91fe6299edb73dc4d6c6930a2f4f713579cd692d9e47f4a1
url: "https://pub.
dev
"
url: "https://pub.
flutter-io.cn
"
source: hosted
version: "4.2.2"
just_audio_web:
...
...
@@ -554,7 +554,7 @@ packages:
description:
name: just_audio_web
sha256: "134356b0fe3d898293102b33b5fd618831ffdc72bb7a1b726140abdf22772b70"
url: "https://pub.
dev
"
url: "https://pub.
flutter-io.cn
"
source: hosted
version: "0.4.9"
lints:
...
...
@@ -562,7 +562,7 @@ packages:
description:
name: lints
sha256: "0a217c6c989d21039f1498c3ed9f3ed71b354e69873f13a8dfc3c9fe76f1b452"
url: "https://pub.
dev
"
url: "https://pub.
flutter-io.cn
"
source: hosted
version: "2.1.1"
logger:
...
...
@@ -570,7 +570,7 @@ packages:
description:
name: logger
sha256: db2ff852ed77090ba9f62d3611e4208a3d11dfa35991a81ae724c113fcb3e3f7
url: "https://pub.
dev
"
url: "https://pub.
flutter-io.cn
"
source: hosted
version: "1.3.0"
logging:
...
...
@@ -578,7 +578,7 @@ packages:
description:
name: logging
sha256: "623a88c9594aa774443aa3eb2d41807a48486b5613e67599fb4c41c0ad47c340"
url: "https://pub.
dev
"
url: "https://pub.
flutter-io.cn
"
source: hosted
version: "1.2.0"
matcher:
...
...
@@ -586,7 +586,7 @@ packages:
description:
name: matcher
sha256: "6501fbd55da300384b768785b83e5ce66991266cec21af89ab9ae7f5ce1c4cbb"
url: "https://pub.
dev
"
url: "https://pub.
flutter-io.cn
"
source: hosted
version: "0.12.15"
material_color_utilities:
...
...
@@ -594,7 +594,7 @@ packages:
description:
name: material_color_utilities
sha256: d92141dc6fe1dad30722f9aa826c7fbc896d021d792f80678280601aff8cf724
url: "https://pub.
dev
"
url: "https://pub.
flutter-io.cn
"
source: hosted
version: "0.2.0"
meta:
...
...
@@ -602,7 +602,7 @@ packages:
description:
name: meta
sha256: "3c74dbf8763d36539f114c799d8a2d87343b5067e9d796ca22b5eb8437090ee3"
url: "https://pub.
dev
"
url: "https://pub.
flutter-io.cn
"
source: hosted
version: "1.9.1"
mime:
...
...
@@ -610,7 +610,7 @@ packages:
description:
name: mime
sha256: e4ff8e8564c03f255408decd16e7899da1733852a9110a58fe6d1b817684a63e
url: "https://pub.
dev
"
url: "https://pub.
flutter-io.cn
"
source: hosted
version: "1.0.4"
nested:
...
...
@@ -618,7 +618,7 @@ packages:
description:
name: nested
sha256: "03bac4c528c64c95c722ec99280375a6f2fc708eec17c7b3f07253b626cd2a20"
url: "https://pub.
dev
"
url: "https://pub.
flutter-io.cn
"
source: hosted
version: "1.0.0"
nm:
...
...
@@ -626,7 +626,7 @@ packages:
description:
name: nm
sha256: "2c9aae4127bdc8993206464fcc063611e0e36e72018696cd9631023a31b24254"
url: "https://pub.
dev
"
url: "https://pub.
flutter-io.cn
"
source: hosted
version: "0.5.0"
oktoast:
...
...
@@ -634,7 +634,7 @@ packages:
description:
name: oktoast
sha256: f1366c5c793ddfb8f55bc6fc3e45db43c45debf173b765fb4c5ec096cbdeb84a
url: "https://pub.
dev
"
url: "https://pub.
flutter-io.cn
"
source: hosted
version: "3.4.0"
package_info_plus:
...
...
@@ -642,7 +642,7 @@ packages:
description:
name: package_info_plus
sha256: "7e76fad405b3e4016cd39d08f455a4eb5199723cf594cd1b8916d47140d93017"
url: "https://pub.
dev
"
url: "https://pub.
flutter-io.cn
"
source: hosted
version: "4.2.0"
package_info_plus_platform_interface:
...
...
@@ -650,7 +650,7 @@ packages:
description:
name: package_info_plus_platform_interface
sha256: "9bc8ba46813a4cc42c66ab781470711781940780fd8beddd0c3da62506d3a6c6"
url: "https://pub.
dev
"
url: "https://pub.
flutter-io.cn
"
source: hosted
version: "2.0.1"
path:
...
...
@@ -658,7 +658,7 @@ packages:
description:
name: path
sha256: "8829d8a55c13fc0e37127c29fedf290c102f4e40ae94ada574091fe0ff96c917"
url: "https://pub.
dev
"
url: "https://pub.
flutter-io.cn
"
source: hosted
version: "1.8.3"
path_drawing:
...
...
@@ -666,7 +666,7 @@ packages:
description:
name: path_drawing
sha256: bbb1934c0cbb03091af082a6389ca2080345291ef07a5fa6d6e078ba8682f977
url: "https://pub.
dev
"
url: "https://pub.
flutter-io.cn
"
source: hosted
version: "1.0.1"
path_parsing:
...
...
@@ -674,7 +674,7 @@ packages:
description:
name: path_parsing
sha256: e3e67b1629e6f7e8100b367d3db6ba6af4b1f0bb80f64db18ef1fbabd2fa9ccf
url: "https://pub.
dev
"
url: "https://pub.
flutter-io.cn
"
source: hosted
version: "1.0.1"
path_provider:
...
...
@@ -682,7 +682,7 @@ packages:
description:
name: path_provider
sha256: b27217933eeeba8ff24845c34003b003b2b22151de3c908d0e679e8fe1aa078b
url: "https://pub.
dev
"
url: "https://pub.
flutter-io.cn
"
source: hosted
version: "2.1.2"
path_provider_android:
...
...
@@ -690,7 +690,7 @@ packages:
description:
name: path_provider_android
sha256: "477184d672607c0a3bf68fbbf601805f92ef79c82b64b4d6eb318cbca4c48668"
url: "https://pub.
dev
"
url: "https://pub.
flutter-io.cn
"
source: hosted
version: "2.2.2"
path_provider_foundation:
...
...
@@ -698,7 +698,7 @@ packages:
description:
name: path_provider_foundation
sha256: "5a7999be66e000916500be4f15a3633ebceb8302719b47b9cc49ce924125350f"
url: "https://pub.
dev
"
url: "https://pub.
flutter-io.cn
"
source: hosted
version: "2.3.2"
path_provider_linux:
...
...
@@ -706,7 +706,7 @@ packages:
description:
name: path_provider_linux
sha256: f7a1fe3a634fe7734c8d3f2766ad746ae2a2884abe22e241a8b301bf5cac3279
url: "https://pub.
dev
"
url: "https://pub.
flutter-io.cn
"
source: hosted
version: "2.2.1"
path_provider_platform_interface:
...
...
@@ -714,7 +714,7 @@ packages:
description:
name: path_provider_platform_interface
sha256: "88f5779f72ba699763fa3a3b06aa4bf6de76c8e5de842cf6f29e2e06476c2334"
url: "https://pub.
dev
"
url: "https://pub.
flutter-io.cn
"
source: hosted
version: "2.1.2"
path_provider_windows:
...
...
@@ -722,7 +722,7 @@ packages:
description:
name: path_provider_windows
sha256: "8bc9f22eee8690981c22aa7fc602f5c85b497a6fb2ceb35ee5a5e5ed85ad8170"
url: "https://pub.
dev
"
url: "https://pub.
flutter-io.cn
"
source: hosted
version: "2.2.1"
permission_handler:
...
...
@@ -730,7 +730,7 @@ packages:
description:
name: permission_handler
sha256: "284a66179cabdf942f838543e10413246f06424d960c92ba95c84439154fcac8"
url: "https://pub.
dev
"
url: "https://pub.
flutter-io.cn
"
source: hosted
version: "11.0.1"
permission_handler_android:
...
...
@@ -738,7 +738,7 @@ packages:
description:
name: permission_handler_android
sha256: f9fddd3b46109bd69ff3f9efa5006d2d309b7aec0f3c1c5637a60a2d5659e76e
url: "https://pub.
dev
"
url: "https://pub.
flutter-io.cn
"
source: hosted
version: "11.1.0"
permission_handler_apple:
...
...
@@ -746,7 +746,7 @@ packages:
description:
name: permission_handler_apple
sha256: "99e220bce3f8877c78e4ace901082fb29fa1b4ebde529ad0932d8d664b34f3f5"
url: "https://pub.
dev
"
url: "https://pub.
flutter-io.cn
"
source: hosted
version: "9.1.4"
permission_handler_platform_interface:
...
...
@@ -754,7 +754,7 @@ packages:
description:
name: permission_handler_platform_interface
sha256: "6760eb5ef34589224771010805bea6054ad28453906936f843a8cc4d3a55c4a4"
url: "https://pub.
dev
"
url: "https://pub.
flutter-io.cn
"
source: hosted
version: "3.12.0"
permission_handler_windows:
...
...
@@ -762,7 +762,7 @@ packages:
description:
name: permission_handler_windows
sha256: cc074aace208760f1eee6aa4fae766b45d947df85bc831cde77009cdb4720098
url: "https://pub.
dev
"
url: "https://pub.
flutter-io.cn
"
source: hosted
version: "0.1.3"
petitparser:
...
...
@@ -770,7 +770,7 @@ packages:
description:
name: petitparser
sha256: cb3798bef7fc021ac45b308f4b51208a152792445cce0448c9a4ba5879dd8750
url: "https://pub.
dev
"
url: "https://pub.
flutter-io.cn
"
source: hosted
version: "5.4.0"
platform:
...
...
@@ -778,7 +778,7 @@ packages:
description:
name: platform
sha256: "12220bb4b65720483f8fa9450b4332347737cf8213dd2840d8b2c823e47243ec"
url: "https://pub.
dev
"
url: "https://pub.
flutter-io.cn
"
source: hosted
version: "3.1.4"
plugin_platform_interface:
...
...
@@ -786,7 +786,7 @@ packages:
description:
name: plugin_platform_interface
sha256: "4820fbfdb9478b1ebae27888254d445073732dae3d6ea81f0b7e06d5dedc3f02"
url: "https://pub.
dev
"
url: "https://pub.
flutter-io.cn
"
source: hosted
version: "2.1.8"
pointycastle:
...
...
@@ -794,7 +794,7 @@ packages:
description:
name: pointycastle
sha256: "43ac87de6e10afabc85c445745a7b799e04de84cebaa4fd7bf55a5e1e9604d29"
url: "https://pub.
dev
"
url: "https://pub.
flutter-io.cn
"
source: hosted
version: "3.7.4"
provider:
...
...
@@ -802,7 +802,7 @@ packages:
description:
name: provider
sha256: c8a055ee5ce3fd98d6fc872478b03823ffdb448699c6ebdbbc71d59b596fd48c
url: "https://pub.
dev
"
url: "https://pub.
flutter-io.cn
"
source: hosted
version: "6.1.2"
pull_to_refresh_flutter3:
...
...
@@ -810,7 +810,7 @@ packages:
description:
name: pull_to_refresh_flutter3
sha256: "223a6241067162dc15cf8c46c05af998ce7aa85e0703d8f696101eb1b5629d76"
url: "https://pub.
dev
"
url: "https://pub.
flutter-io.cn
"
source: hosted
version: "2.0.1"
rational:
...
...
@@ -818,7 +818,7 @@ packages:
description:
name: rational
sha256: ba58e9e18df9abde280e8b10051e4bce85091e41e8e7e411b6cde2e738d357cf
url: "https://pub.
dev
"
url: "https://pub.
flutter-io.cn
"
source: hosted
version: "2.2.2"
recase:
...
...
@@ -826,7 +826,7 @@ packages:
description:
name: recase
sha256: e4eb4ec2dcdee52dcf99cb4ceabaffc631d7424ee55e56f280bc039737f89213
url: "https://pub.
dev
"
url: "https://pub.
flutter-io.cn
"
source: hosted
version: "4.1.0"
rxdart:
...
...
@@ -834,7 +834,7 @@ packages:
description:
name: rxdart
sha256: "0c7c0cedd93788d996e33041ffecda924cc54389199cde4e6a34b440f50044cb"
url: "https://pub.
dev
"
url: "https://pub.
flutter-io.cn
"
source: hosted
version: "0.27.7"
scrollable_positioned_list:
...
...
@@ -842,7 +842,7 @@ packages:
description:
name: scrollable_positioned_list
sha256: "9566352ab9ba05794ee6c8864f154afba5d36c5637d0e3e32c615ba4ceb92772"
url: "https://pub.
dev
"
url: "https://pub.
flutter-io.cn
"
source: hosted
version: "0.2.3"
shared_preferences:
...
...
@@ -850,7 +850,7 @@ packages:
description:
name: shared_preferences
sha256: "16d3fb6b3692ad244a695c0183fca18cf81fd4b821664394a781de42386bf022"
url: "https://pub.
dev
"
url: "https://pub.
flutter-io.cn
"
source: hosted
version: "2.1.1"
shared_preferences_android:
...
...
@@ -858,7 +858,7 @@ packages:
description:
name: shared_preferences_android
sha256: "8568a389334b6e83415b6aae55378e158fbc2314e074983362d20c562780fb06"
url: "https://pub.
dev
"
url: "https://pub.
flutter-io.cn
"
source: hosted
version: "2.2.1"
shared_preferences_foundation:
...
...
@@ -866,7 +866,7 @@ packages:
description:
name: shared_preferences_foundation
sha256: "7708d83064f38060c7b39db12aefe449cb8cdc031d6062280087bc4cdb988f5c"
url: "https://pub.
dev
"
url: "https://pub.
flutter-io.cn
"
source: hosted
version: "2.3.5"
shared_preferences_linux:
...
...
@@ -874,7 +874,7 @@ packages:
description:
name: shared_preferences_linux
sha256: "9f2cbcf46d4270ea8be39fa156d86379077c8a5228d9dfdb1164ae0bb93f1faa"
url: "https://pub.
dev
"
url: "https://pub.
flutter-io.cn
"
source: hosted
version: "2.3.2"
shared_preferences_platform_interface:
...
...
@@ -882,7 +882,7 @@ packages:
description:
name: shared_preferences_platform_interface
sha256: "22e2ecac9419b4246d7c22bfbbda589e3acf5c0351137d87dd2939d984d37c3b"
url: "https://pub.
dev
"
url: "https://pub.
flutter-io.cn
"
source: hosted
version: "2.3.2"
shared_preferences_web:
...
...
@@ -890,7 +890,7 @@ packages:
description:
name: shared_preferences_web
sha256: d762709c2bbe80626ecc819143013cc820fa49ca5e363620ee20a8b15a3e3daf
url: "https://pub.
dev
"
url: "https://pub.
flutter-io.cn
"
source: hosted
version: "2.2.1"
shared_preferences_windows:
...
...
@@ -898,7 +898,7 @@ packages:
description:
name: shared_preferences_windows
sha256: "841ad54f3c8381c480d0c9b508b89a34036f512482c407e6df7a9c4aa2ef8f59"
url: "https://pub.
dev
"
url: "https://pub.
flutter-io.cn
"
source: hosted
version: "2.3.2"
sky_engine:
...
...
@@ -911,7 +911,7 @@ packages:
description:
name: source_span
sha256: dd904f795d4b4f3b870833847c461801f6750a9fa8e61ea5ac53f9422b31f250
url: "https://pub.
dev
"
url: "https://pub.
flutter-io.cn
"
source: hosted
version: "1.9.1"
sqflite:
...
...
@@ -919,7 +919,7 @@ packages:
description:
name: sqflite
sha256: a9016f495c927cb90557c909ff26a6d92d9bd54fc42ba92e19d4e79d61e798c6
url: "https://pub.
dev
"
url: "https://pub.
flutter-io.cn
"
source: hosted
version: "2.3.2"
sqflite_common:
...
...
@@ -927,7 +927,7 @@ packages:
description:
name: sqflite_common
sha256: "28d8c66baee4968519fb8bd6cdbedad982d6e53359091f0b74544a9f32ec72d5"
url: "https://pub.
dev
"
url: "https://pub.
flutter-io.cn
"
source: hosted
version: "2.5.3"
stack_trace:
...
...
@@ -935,7 +935,7 @@ packages:
description:
name: stack_trace
sha256: c3c7d8edb15bee7f0f74debd4b9c5f3c2ea86766fe4178eb2a18eb30a0bdaed5
url: "https://pub.
dev
"
url: "https://pub.
flutter-io.cn
"
source: hosted
version: "1.11.0"
stream_channel:
...
...
@@ -943,7 +943,7 @@ packages:
description:
name: stream_channel
sha256: "83615bee9045c1d322bbbd1ba209b7a749c2cbcdcb3fdd1df8eb488b3279c1c8"
url: "https://pub.
dev
"
url: "https://pub.
flutter-io.cn
"
source: hosted
version: "2.1.1"
string_scanner:
...
...
@@ -951,7 +951,7 @@ packages:
description:
name: string_scanner
sha256: "556692adab6cfa87322a115640c11f13cb77b3f076ddcc5d6ae3c20242bedcde"
url: "https://pub.
dev
"
url: "https://pub.
flutter-io.cn
"
source: hosted
version: "1.2.0"
synchronized:
...
...
@@ -959,7 +959,7 @@ packages:
description:
name: synchronized
sha256: "539ef412b170d65ecdafd780f924e5be3f60032a1128df156adad6c5b373d558"
url: "https://pub.
dev
"
url: "https://pub.
flutter-io.cn
"
source: hosted
version: "3.1.0+1"
term_glyph:
...
...
@@ -967,7 +967,7 @@ packages:
description:
name: term_glyph
sha256: a29248a84fbb7c79282b40b8c72a1209db169a2e0542bce341da992fe1bc7e84
url: "https://pub.
dev
"
url: "https://pub.
flutter-io.cn
"
source: hosted
version: "1.2.1"
test_api:
...
...
@@ -975,7 +975,7 @@ packages:
description:
name: test_api
sha256: eb6ac1540b26de412b3403a163d919ba86f6a973fe6cc50ae3541b80092fdcfb
url: "https://pub.
dev
"
url: "https://pub.
flutter-io.cn
"
source: hosted
version: "0.5.1"
tobias:
...
...
@@ -983,7 +983,7 @@ packages:
description:
name: tobias
sha256: "3dfbc0b075982b0ac641bb8dbc9dc32e7f61d50da304cc93edc334d04b3b917e"
url: "https://pub.
dev
"
url: "https://pub.
flutter-io.cn
"
source: hosted
version: "3.3.1"
typed_data:
...
...
@@ -991,7 +991,7 @@ packages:
description:
name: typed_data
sha256: facc8d6582f16042dd49f2463ff1bd6e2c9ef9f3d5da3d9b087e244a7b564b3c
url: "https://pub.
dev
"
url: "https://pub.
flutter-io.cn
"
source: hosted
version: "1.3.2"
uuid:
...
...
@@ -999,7 +999,7 @@ packages:
description:
name: uuid
sha256: "648e103079f7c64a36dc7d39369cabb358d377078a051d6ae2ad3aa539519313"
url: "https://pub.
dev
"
url: "https://pub.
flutter-io.cn
"
source: hosted
version: "3.0.7"
vector_math:
...
...
@@ -1007,7 +1007,7 @@ packages:
description:
name: vector_math
sha256: "80b3257d1492ce4d091729e3a67a60407d227c27241d6927be0130c98e741803"
url: "https://pub.
dev
"
url: "https://pub.
flutter-io.cn
"
source: hosted
version: "2.1.4"
win32:
...
...
@@ -1015,7 +1015,7 @@ packages:
description:
name: win32
sha256: "350a11abd2d1d97e0cc7a28a81b781c08002aa2864d9e3f192ca0ffa18b06ed3"
url: "https://pub.
dev
"
url: "https://pub.
flutter-io.cn
"
source: hosted
version: "5.0.9"
xdg_directories:
...
...
@@ -1023,7 +1023,7 @@ packages:
description:
name: xdg_directories
sha256: faea9dee56b520b55a566385b84f2e8de55e7496104adada9962e0bd11bcff1d
url: "https://pub.
dev
"
url: "https://pub.
flutter-io.cn
"
source: hosted
version: "1.0.4"
xml:
...
...
@@ -1031,7 +1031,7 @@ packages:
description:
name: xml
sha256: "5bc72e1e45e941d825fd7468b9b4cc3b9327942649aeb6fc5cdbf135f0a86e84"
url: "https://pub.
dev
"
url: "https://pub.
flutter-io.cn
"
source: hosted
version: "6.3.0"
sdks:
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论