fix: plus symbol in select option overflows (#3789)

* Fixed overflow problem for plus symbol

* Wrapping SizedBox with Flexible is not needed
This commit is contained in:
Bryan Olivares 2023-10-26 07:03:43 -07:00 committed by GitHub
parent c2eb2014a3
commit 03598d3f22
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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(