mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2025-07-25 01:50:56 +00:00
69 lines
2.0 KiB
Dart
69 lines
2.0 KiB
Dart
![]() |
import 'package:appflowy/generated/locale_keys.g.dart';
|
||
|
import 'package:appflowy/plugins/database/application/tab_bar_bloc.dart';
|
||
|
import 'package:appflowy/plugins/shared/share/share_bloc.dart';
|
||
|
import 'package:appflowy/plugins/shared/share/share_menu.dart';
|
||
|
import 'package:appflowy_popover/appflowy_popover.dart';
|
||
|
import 'package:easy_localization/easy_localization.dart';
|
||
|
import 'package:flowy_infra_ui/flowy_infra_ui.dart';
|
||
|
import 'package:flowy_infra_ui/widget/rounded_button.dart';
|
||
|
import 'package:flutter/material.dart';
|
||
|
import 'package:flutter_bloc/flutter_bloc.dart';
|
||
|
|
||
|
class ShareMenuButton extends StatelessWidget {
|
||
|
const ShareMenuButton({
|
||
|
super.key,
|
||
|
required this.tabs,
|
||
|
});
|
||
|
|
||
|
final List<ShareMenuTab> tabs;
|
||
|
|
||
|
@override
|
||
|
Widget build(BuildContext context) {
|
||
|
final shareBloc = context.read<ShareBloc>();
|
||
|
final databaseBloc = context.read<DatabaseTabBarBloc?>();
|
||
|
return SizedBox(
|
||
|
height: 32.0,
|
||
|
child: IntrinsicWidth(
|
||
|
child: AppFlowyPopover(
|
||
|
direction: PopoverDirection.bottomWithRightAligned,
|
||
|
constraints: const BoxConstraints(
|
||
|
maxWidth: 422,
|
||
|
),
|
||
|
offset: const Offset(0, 8),
|
||
|
popupBuilder: (context) => MultiBlocProvider(
|
||
|
providers: [
|
||
|
if (databaseBloc != null)
|
||
|
BlocProvider.value(
|
||
|
value: databaseBloc,
|
||
|
),
|
||
|
BlocProvider.value(value: shareBloc),
|
||
|
],
|
||
|
child: ShareMenu(
|
||
|
tabs: tabs,
|
||
|
),
|
||
|
),
|
||
|
child: const _ShareButton(),
|
||
|
),
|
||
|
),
|
||
|
);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
class _ShareButton extends StatelessWidget {
|
||
|
const _ShareButton();
|
||
|
|
||
|
@override
|
||
|
Widget build(BuildContext context) {
|
||
|
return RoundedTextButton(
|
||
|
title: LocaleKeys.shareAction_buttonText.tr(),
|
||
|
padding: const EdgeInsets.symmetric(horizontal: 14.0),
|
||
|
fontSize: 14.0,
|
||
|
fontWeight: FontWeight.w500,
|
||
|
borderRadius: const BorderRadius.all(
|
||
|
Radius.circular(10.0),
|
||
|
),
|
||
|
textColor: Theme.of(context).colorScheme.onPrimary,
|
||
|
);
|
||
|
}
|
||
|
}
|