🐛 Fixes no api key hint
This commit is contained in:
parent
cfa61e1a8a
commit
76f2c0ad58
@ -26,7 +26,7 @@ class _QueryScreenState extends State<QueryScreen> {
|
|||||||
setState(() => _isLoading = true);
|
setState(() => _isLoading = true);
|
||||||
|
|
||||||
final FoodDataController data = Get.find();
|
final FoodDataController data = Get.find();
|
||||||
if (data.getApiKey() == null) {
|
if (data.getApiKey() == null || data.getApiKey()!.isEmpty) {
|
||||||
setState(() => _hasApiKey = false);
|
setState(() => _hasApiKey = false);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
@ -44,7 +44,11 @@ class _QueryScreenState extends State<QueryScreen> {
|
|||||||
void initState() {
|
void initState() {
|
||||||
super.initState();
|
super.initState();
|
||||||
final FoodDataController data = Get.find();
|
final FoodDataController data = Get.find();
|
||||||
data.initialize(context);
|
data.initialize(context).then((_) {
|
||||||
|
setState(() {
|
||||||
|
_hasApiKey = data.getApiKey() != null && data.getApiKey()!.isNotEmpty;
|
||||||
|
});
|
||||||
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
@override
|
@override
|
||||||
|
@ -49,5 +49,5 @@ const i18nEnglish = {
|
|||||||
'searchHint': 'Type keywords below to search',
|
'searchHint': 'Type keywords below to search',
|
||||||
'searchNoKeyHint':
|
'searchNoKeyHint':
|
||||||
'No API key, please first set up the API key in "Settings" > "Data Source"',
|
'No API key, please first set up the API key in "Settings" > "Data Source"',
|
||||||
'searchResultHint': '@count records matched (up to the first 100)',
|
'searchResultHint': '@count records matched (showing 100)',
|
||||||
};
|
};
|
||||||
|
@ -42,5 +42,5 @@ const i18nSimplifiedChinese = {
|
|||||||
'loading': '加载中',
|
'loading': '加载中',
|
||||||
'searchHint': '在下方键入关键词来搜索',
|
'searchHint': '在下方键入关键词来搜索',
|
||||||
'searchNoKeyHint': '无 API 令牌,请先在「设置」>「数据源」设置 API 密钥',
|
'searchNoKeyHint': '无 API 令牌,请先在「设置」>「数据源」设置 API 密钥',
|
||||||
'searchResultHint': '共命中 @count 条记录(截取前 100 条)',
|
'searchResultHint': '共命中 @count 条记录(显示前 100 条)',
|
||||||
};
|
};
|
||||||
|
Loading…
Reference in New Issue
Block a user