mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2025-12-28 15:45:43 +00:00
fix(flutter_desktop): hidden kanban group name overflow (#6763)
This commit is contained in:
parent
6ad303583b
commit
3cd26cca35
@ -278,25 +278,33 @@ class HiddenGroupButtonContent extends StatelessWidget {
|
||||
index: index,
|
||||
),
|
||||
const HSpace(4),
|
||||
FlowyText(
|
||||
group
|
||||
.generateGroupName(bloc.databaseController),
|
||||
overflow: TextOverflow.ellipsis,
|
||||
),
|
||||
const HSpace(6),
|
||||
Expanded(
|
||||
child: FlowyText(
|
||||
group.rows.length.toString(),
|
||||
overflow: TextOverflow.ellipsis,
|
||||
color: Theme.of(context).hintColor,
|
||||
child: Row(
|
||||
children: [
|
||||
Flexible(
|
||||
child: FlowyText(
|
||||
group.generateGroupName(
|
||||
bloc.databaseController,
|
||||
),
|
||||
overflow: TextOverflow.ellipsis,
|
||||
),
|
||||
),
|
||||
const HSpace(6),
|
||||
FlowyText(
|
||||
group.rows.length.toString(),
|
||||
overflow: TextOverflow.ellipsis,
|
||||
color: Theme.of(context).hintColor,
|
||||
),
|
||||
],
|
||||
),
|
||||
),
|
||||
if (isHovering) ...[
|
||||
const HSpace(6),
|
||||
FlowyIconButton(
|
||||
width: 20,
|
||||
icon: FlowySvg(
|
||||
icon: const FlowySvg(
|
||||
FlowySvgs.show_m,
|
||||
color: Theme.of(context).hintColor,
|
||||
size: Size.square(16),
|
||||
),
|
||||
onPressed: () =>
|
||||
context.read<BoardBloc>().add(
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user