This commit is contained in:
Developer
2026-03-31 23:31:38 +08:00
parent b081f09895
commit 2f785d6279
11 changed files with 549 additions and 94 deletions

View File

@@ -902,38 +902,70 @@ class _OfflineDataPageState extends State<OfflineDataPage> {
children: [
Row(
children: [
Icon(Icons.info_outline, color: Colors.blue[600], size: 16),
Icon(Icons.info_outline, color: Colors.blue[600], size: 20),
const SizedBox(width: 8),
Text(
'温馨提示',
style: TextStyle(
fontSize: 14,
fontWeight: FontWeight.w600,
fontSize: 16,
fontWeight: FontWeight.bold,
color: Colors.blue[600],
),
),
],
),
const SizedBox(height: 8),
const Text(
'• 开启离线模式后,将会循环加载本地的数据源',
style: TextStyle(fontSize: 12, color: Colors.grey),
),
const Text(
'• 下载的数据将保存在本地,可在无网络时使用',
style: TextStyle(fontSize: 12, color: Colors.grey),
),
const Text(
'• 下载过程中请保持网络连接',
style: TextStyle(fontSize: 12, color: Colors.grey),
),
const Text(
'• 缓存数据不会写入历史记录',
style: TextStyle(fontSize: 12, color: Colors.grey),
),
const Text(
'• 建议在WiFi环境下下载较多数据',
style: TextStyle(fontSize: 12, color: Colors.grey),
const SizedBox(height: 12),
Padding(
padding: const EdgeInsets.only(left: 4),
child: Column(
crossAxisAlignment: CrossAxisAlignment.start,
children: [
Text(
'• 数据下载后 需手动开启离线状态',
style: TextStyle(
fontSize: 14,
color: Colors.grey[700],
fontWeight: FontWeight.w500,
),
),
const SizedBox(height: 4),
Padding(
padding: const EdgeInsets.only(left: 20),
child: Text(
'方法:个人 → 下拉 点击头像下面关闭按钮 头像显示离线',
style: TextStyle(
fontSize: 13,
color: Colors.grey[600],
),
),
),
const SizedBox(height: 8),
Text(
'• 开启离线模式后,将会循环加载本地的数据源',
style: TextStyle(fontSize: 14, color: Colors.grey[700]),
),
const SizedBox(height: 8),
Text(
'• 下载的数据将保存在本地,可在无网络时使用',
style: TextStyle(fontSize: 14, color: Colors.grey[700]),
),
const SizedBox(height: 8),
Text(
'• 下载过程中请保持网络连接',
style: TextStyle(fontSize: 14, color: Colors.grey[700]),
),
const SizedBox(height: 8),
Text(
'• 缓存数据不会写入历史记录',
style: TextStyle(fontSize: 14, color: Colors.grey[700]),
),
const SizedBox(height: 8),
Text(
'• 建议在WiFi环境下下载较多数据',
style: TextStyle(fontSize: 14, color: Colors.grey[700]),
),
],
),
),
],
),