From 77d1dbedd6650761f72356905751d7d956688ab4 Mon Sep 17 00:00:00 2001 From: appflowy Date: Fri, 23 Sep 2022 17:50:32 +0800 Subject: [PATCH] chore: adjust insets of some popup --- .../app_flowy/lib/plugins/board/presentation/card/card.dart | 1 + .../lib/plugins/grid/presentation/widgets/row/grid_row.dart | 1 + .../plugins/grid/presentation/widgets/toolbar/grid_toolbar.dart | 1 + .../flowy_infra_ui/lib/src/flowy_overlay/appflowy_popover.dart | 2 +- 4 files changed, 4 insertions(+), 1 deletion(-) diff --git a/frontend/app_flowy/lib/plugins/board/presentation/card/card.dart b/frontend/app_flowy/lib/plugins/board/presentation/card/card.dart index 2580078e2d..c08ece7474 100644 --- a/frontend/app_flowy/lib/plugins/board/presentation/card/card.dart +++ b/frontend/app_flowy/lib/plugins/board/presentation/card/card.dart @@ -85,6 +85,7 @@ class _BoardCardState extends State { controller: popoverController, triggerActions: PopoverTriggerFlags.none, constraints: BoxConstraints.loose(const Size(140, 200)), + margin: const EdgeInsets.all(6), direction: PopoverDirection.rightWithCenterAligned, popupBuilder: (popoverContext) => _handlePopoverBuilder( context, diff --git a/frontend/app_flowy/lib/plugins/grid/presentation/widgets/row/grid_row.dart b/frontend/app_flowy/lib/plugins/grid/presentation/widgets/row/grid_row.dart index 2c3065196f..79643f48fb 100755 --- a/frontend/app_flowy/lib/plugins/grid/presentation/widgets/row/grid_row.dart +++ b/frontend/app_flowy/lib/plugins/grid/presentation/widgets/row/grid_row.dart @@ -109,6 +109,7 @@ class _RowLeadingState extends State<_RowLeading> { triggerActions: PopoverTriggerFlags.none, constraints: BoxConstraints.loose(const Size(140, 200)), direction: PopoverDirection.rightWithCenterAligned, + margin: const EdgeInsets.all(6), popupBuilder: (BuildContext popoverContext) { return GridRowActionSheet( rowData: context.read().state.rowInfo); diff --git a/frontend/app_flowy/lib/plugins/grid/presentation/widgets/toolbar/grid_toolbar.dart b/frontend/app_flowy/lib/plugins/grid/presentation/widgets/toolbar/grid_toolbar.dart index 197dfb3dd5..7b5ca129ce 100644 --- a/frontend/app_flowy/lib/plugins/grid/presentation/widgets/toolbar/grid_toolbar.dart +++ b/frontend/app_flowy/lib/plugins/grid/presentation/widgets/toolbar/grid_toolbar.dart @@ -55,6 +55,7 @@ class _SettingButton extends StatelessWidget { return AppFlowyPopover( constraints: BoxConstraints.loose(const Size(260, 400)), offset: const Offset(0, 10), + margin: const EdgeInsets.all(6), child: FlowyIconButton( width: 22, hoverColor: theme.hover, diff --git a/frontend/app_flowy/packages/flowy_infra_ui/lib/src/flowy_overlay/appflowy_popover.dart b/frontend/app_flowy/packages/flowy_infra_ui/lib/src/flowy_overlay/appflowy_popover.dart index 54a7b1941d..7885cbb01d 100644 --- a/frontend/app_flowy/packages/flowy_infra_ui/lib/src/flowy_overlay/appflowy_popover.dart +++ b/frontend/app_flowy/packages/flowy_infra_ui/lib/src/flowy_overlay/appflowy_popover.dart @@ -30,7 +30,7 @@ class AppFlowyPopover extends StatelessWidget { this.offset, this.controller, this.asBarrier = false, - this.margin = const EdgeInsets.all(6), + this.margin = const EdgeInsets.all(12), }) : super(key: key); @override