mirror of
https://github.com/Xevion/paperless-mobile.git
synced 2025-12-05 23:15:42 -06:00
38 lines
1.3 KiB
Dart
38 lines
1.3 KiB
Dart
import 'package:flutter/material.dart';
|
|
import 'package:flutter_bloc/flutter_bloc.dart';
|
|
import 'package:paperless_mobile/features/inbox/cubit/inbox_cubit.dart';
|
|
import 'package:paperless_mobile/generated/l10n/app_localizations.dart';
|
|
|
|
class InboxEmptyWidget extends StatelessWidget {
|
|
const InboxEmptyWidget({
|
|
Key? key,
|
|
required GlobalKey<RefreshIndicatorState> emptyStateRefreshIndicatorKey,
|
|
}) : _emptyStateRefreshIndicatorKey = emptyStateRefreshIndicatorKey,
|
|
super(key: key);
|
|
|
|
final GlobalKey<RefreshIndicatorState> _emptyStateRefreshIndicatorKey;
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return RefreshIndicator(
|
|
key: _emptyStateRefreshIndicatorKey,
|
|
onRefresh: () => context.read<InboxCubit>().loadInbox(),
|
|
child: Center(
|
|
child: Column(
|
|
mainAxisSize: MainAxisSize.max,
|
|
crossAxisAlignment: CrossAxisAlignment.center,
|
|
mainAxisAlignment: MainAxisAlignment.center,
|
|
children: [
|
|
Text(S.of(context)!.youDoNotHaveUnseenDocuments),
|
|
TextButton(
|
|
onPressed: () =>
|
|
_emptyStateRefreshIndicatorKey.currentState?.show(),
|
|
child: Text(S.of(context)!.refresh),
|
|
),
|
|
],
|
|
),
|
|
),
|
|
);
|
|
}
|
|
}
|