mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2024-08-30 18:12:39 +00:00
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:
parent
c2eb2014a3
commit
03598d3f22
@ -209,9 +209,11 @@ class _Title extends StatelessWidget {
|
|||||||
child: Row(
|
child: Row(
|
||||||
crossAxisAlignment: CrossAxisAlignment.center,
|
crossAxisAlignment: CrossAxisAlignment.center,
|
||||||
children: [
|
children: [
|
||||||
FlowyText.medium(
|
Flexible(
|
||||||
LocaleKeys.grid_selectOption_panelTitle.tr(),
|
child: FlowyText.medium(
|
||||||
color: Theme.of(context).hintColor,
|
LocaleKeys.grid_selectOption_panelTitle.tr(),
|
||||||
|
color: Theme.of(context).hintColor,
|
||||||
|
),
|
||||||
),
|
),
|
||||||
Padding(
|
Padding(
|
||||||
padding: const EdgeInsets.symmetric(
|
padding: const EdgeInsets.symmetric(
|
||||||
|
Loading…
x
Reference in New Issue
Block a user