Added ios support for receive_sharing_intent, some consistency fixes and bug fixes

This commit is contained in:
Anton Stubenbord
2022-11-21 23:47:27 +01:00
parent 2a545dba7c
commit a7295fb739
34 changed files with 865 additions and 71 deletions

View File

@@ -53,7 +53,7 @@ class _DocumentsPageState extends State<DocumentsPage> {
try {
BlocProvider.of<DocumentsCubit>(context).loadDocuments();
} on ErrorMessage catch (error, stackTrace) {
showError(context, error, stackTrace);
showErrorMessage(context, error, stackTrace);
}
}
@@ -73,7 +73,7 @@ class _DocumentsPageState extends State<DocumentsPage> {
try {
await documentsCubit.loadMore();
} on ErrorMessage catch (error, stackTrace) {
showError(context, error, stackTrace);
showErrorMessage(context, error, stackTrace);
}
}
@@ -87,7 +87,7 @@ class _DocumentsPageState extends State<DocumentsPage> {
(filter) => filter.copyWith(page: 1),
);
} on ErrorMessage catch (error, stackTrace) {
showError(context, error, stackTrace);
showErrorMessage(context, error, stackTrace);
}
}