Fix pointer on MentionChip
This commit is contained in:
parent
20f0ce9fa5
commit
7c1918857a
1 changed files with 11 additions and 9 deletions
|
|
@ -27,6 +27,7 @@ class MentionChip extends ConsumerWidget {
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
child: IgnorePointer(
|
||||||
child: Chip(
|
child: Chip(
|
||||||
label: Text(
|
label: Text(
|
||||||
(membership == null ? null : "@${membership.displayName}") ??
|
(membership == null ? null : "@${membership.displayName}") ??
|
||||||
|
|
@ -39,6 +40,7 @@ class MentionChip extends ConsumerWidget {
|
||||||
),
|
),
|
||||||
backgroundColor: Theme.of(context).colorScheme.primary,
|
backgroundColor: Theme.of(context).colorScheme.primary,
|
||||||
),
|
),
|
||||||
|
),
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue