diff --git a/frontend/app_flowy/lib/workspace/presentation/stack_page/doc/doc_stack_page.dart b/frontend/app_flowy/lib/workspace/presentation/stack_page/doc/doc_stack_page.dart index 3c4e56a904..5db2e12e4d 100644 --- a/frontend/app_flowy/lib/workspace/presentation/stack_page/doc/doc_stack_page.dart +++ b/frontend/app_flowy/lib/workspace/presentation/stack_page/doc/doc_stack_page.dart @@ -179,15 +179,13 @@ class DocumentShareButton extends StatelessWidget { child: Selector( selector: (ctx, notifier) => notifier.language, builder: (ctx, _, child) => ConstrainedBox( - constraints: BoxConstraints( - maxHeight: 30, - minWidth: buttonWidth, - maxWidth: 100, + constraints: BoxConstraints.expand( + height: 30, + // minWidth: buttonWidth, + width: 100, ), child: RoundedTextButton( title: LocaleKeys.shareAction_buttonText.tr(), - // height: 30, - // width: buttonWidth, fontSize: 12, borderRadius: Corners.s6Border, color: Colors.lightBlue, diff --git a/frontend/app_flowy/lib/workspace/presentation/stack_page/doc/widget/toolbar/history_button.dart b/frontend/app_flowy/lib/workspace/presentation/stack_page/doc/widget/toolbar/history_button.dart index 72a1ffb55e..fbe85f40dd 100644 --- a/frontend/app_flowy/lib/workspace/presentation/stack_page/doc/widget/toolbar/history_button.dart +++ b/frontend/app_flowy/lib/workspace/presentation/stack_page/doc/widget/toolbar/history_button.dart @@ -26,7 +26,7 @@ class FlowyHistoryButton extends StatelessWidget { icon: icon, iconSize: iconSize, controller: controller, - undo: true, + undo: undo, ), ); }