mirror of
https://github.com/immich-app/immich.git
synced 2024-12-19 00:32:49 +02:00
983473261b
* build(mobile): add riverpod_lint * refactor(mobile): riverpod_generator for providers * test(mobile): fix integration test helper * refactor: ApiService to riverpod codegen * refactor(mobile): return curatedcontent instead of people dto * refactor: person provider to asyncnotifier * mobile: update service providers to use lambda * mobile: update scaffoldbody default error icon * remove logger mixin --------- Co-authored-by: shalong-tanwen <139912620+shalong-tanwen@users.noreply.github.com>
34 lines
993 B
Dart
34 lines
993 B
Dart
import 'package:easy_localization/easy_localization.dart';
|
|
import 'package:flutter/material.dart';
|
|
import 'package:immich_mobile/extensions/build_context_extensions.dart';
|
|
|
|
// Error widget to be used in Scaffold when an AsyncError is received
|
|
class ScaffoldErrorBody extends StatelessWidget {
|
|
final IconData icon;
|
|
|
|
const ScaffoldErrorBody({this.icon = Icons.error_outline, super.key});
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return Column(
|
|
crossAxisAlignment: CrossAxisAlignment.center,
|
|
mainAxisAlignment: MainAxisAlignment.center,
|
|
children: [
|
|
const Text(
|
|
"scaffold_body_error_occured",
|
|
style:
|
|
TextStyle(fontSize: 14, fontWeight: FontWeight.bold, height: 3),
|
|
textAlign: TextAlign.center,
|
|
).tr(),
|
|
Center(
|
|
child: Icon(
|
|
icon,
|
|
size: 100,
|
|
color: context.themeData.iconTheme.color?.withOpacity(0.5),
|
|
),
|
|
),
|
|
],
|
|
);
|
|
}
|
|
}
|