From 03598d3f22a8dff9b2b6d2bf216838d68e1b41e5 Mon Sep 17 00:00:00 2001 From: Bryan Olivares <66151079+bryanoli@users.noreply.github.com> Date: Thu, 26 Oct 2023 07:03:43 -0700 Subject: [PATCH] fix: plus symbol in select option overflows (#3789) * Fixed overflow problem for plus symbol * Wrapping SizedBox with Flexible is not needed --- .../cells/select_option_cell/select_option_editor.dart | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/frontend/appflowy_flutter/lib/plugins/database_view/widgets/row/cells/select_option_cell/select_option_editor.dart b/frontend/appflowy_flutter/lib/plugins/database_view/widgets/row/cells/select_option_cell/select_option_editor.dart index 85705e840b..64cb97b2da 100644 --- a/frontend/appflowy_flutter/lib/plugins/database_view/widgets/row/cells/select_option_cell/select_option_editor.dart +++ b/frontend/appflowy_flutter/lib/plugins/database_view/widgets/row/cells/select_option_cell/select_option_editor.dart @@ -209,9 +209,11 @@ class _Title extends StatelessWidget { child: Row( crossAxisAlignment: CrossAxisAlignment.center, children: [ - FlowyText.medium( - LocaleKeys.grid_selectOption_panelTitle.tr(), - color: Theme.of(context).hintColor, + Flexible( + child: FlowyText.medium( + LocaleKeys.grid_selectOption_panelTitle.tr(), + color: Theme.of(context).hintColor, + ), ), Padding( padding: const EdgeInsets.symmetric(