mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2024-08-30 18:12:39 +00:00
fix: v0.5.1 issues (#4844)
* chore: improve clear cache hint text * fix: remove color tab in image picker
This commit is contained in:
parent
2a65c193c2
commit
6bac0412eb
@ -7,6 +7,7 @@ import 'package:appflowy/mobile/presentation/widgets/widgets.dart';
|
|||||||
import 'package:appflowy/shared/appflowy_cache_manager.dart';
|
import 'package:appflowy/shared/appflowy_cache_manager.dart';
|
||||||
import 'package:appflowy/startup/startup.dart';
|
import 'package:appflowy/startup/startup.dart';
|
||||||
import 'package:appflowy/util/share_log_files.dart';
|
import 'package:appflowy/util/share_log_files.dart';
|
||||||
|
import 'package:appflowy/workspace/presentation/home/toast.dart';
|
||||||
import 'package:easy_localization/easy_localization.dart';
|
import 'package:easy_localization/easy_localization.dart';
|
||||||
import 'package:flowy_infra_ui/flowy_infra_ui.dart';
|
import 'package:flowy_infra_ui/flowy_infra_ui.dart';
|
||||||
import 'package:flutter/material.dart';
|
import 'package:flutter/material.dart';
|
||||||
@ -71,9 +72,14 @@ class SupportSettingGroup extends StatelessWidget {
|
|||||||
maxLines: 4,
|
maxLines: 4,
|
||||||
),
|
),
|
||||||
actionButtonTitle: LocaleKeys.button_yes.tr(),
|
actionButtonTitle: LocaleKeys.button_yes.tr(),
|
||||||
actionButtonColor: Theme.of(context).colorScheme.error,
|
|
||||||
onActionButtonPressed: () async {
|
onActionButtonPressed: () async {
|
||||||
await getIt<FlowyCacheManager>().clearAllCache();
|
await getIt<FlowyCacheManager>().clearAllCache();
|
||||||
|
if (context.mounted) {
|
||||||
|
showSnackBarMessage(
|
||||||
|
context,
|
||||||
|
LocaleKeys.settings_files_clearCacheSuccess.tr(),
|
||||||
|
);
|
||||||
|
}
|
||||||
},
|
},
|
||||||
);
|
);
|
||||||
},
|
},
|
||||||
|
@ -86,6 +86,13 @@ class ImagePlaceholderState extends State<ImagePlaceholder> {
|
|||||||
popupBuilder: (context) {
|
popupBuilder: (context) {
|
||||||
return UploadImageMenu(
|
return UploadImageMenu(
|
||||||
limitMaximumImageSize: !_isLocalMode(),
|
limitMaximumImageSize: !_isLocalMode(),
|
||||||
|
supportTypes: const [
|
||||||
|
UploadImageType.local,
|
||||||
|
UploadImageType.url,
|
||||||
|
UploadImageType.unsplash,
|
||||||
|
UploadImageType.openAI,
|
||||||
|
UploadImageType.stabilityAI,
|
||||||
|
],
|
||||||
onSelectedLocalImage: (path) {
|
onSelectedLocalImage: (path) {
|
||||||
controller.close();
|
controller.close();
|
||||||
WidgetsBinding.instance.addPostFrameCallback((timeStamp) async {
|
WidgetsBinding.instance.addPostFrameCallback((timeStamp) async {
|
||||||
|
@ -463,7 +463,7 @@
|
|||||||
"exportFileFail": "Export file failed!",
|
"exportFileFail": "Export file failed!",
|
||||||
"export": "Export",
|
"export": "Export",
|
||||||
"clearCache": "Clear cache",
|
"clearCache": "Clear cache",
|
||||||
"clearCacheDesc": "Clear the cache including the images, fonts, and other temporary files. This will not delete your data.",
|
"clearCacheDesc": "If you encounter issues with images not loading or fonts not displaying correctly, try clearing your cache. This action will not remove your user data.",
|
||||||
"areYouSureToClearCache": "Are you sure to clear the cache?",
|
"areYouSureToClearCache": "Are you sure to clear the cache?",
|
||||||
"clearCacheSuccess": "Cache cleared successfully!"
|
"clearCacheSuccess": "Cache cleared successfully!"
|
||||||
},
|
},
|
||||||
|
Loading…
Reference in New Issue
Block a user