Wrap add person name banner inside safeArea (#1887)

## Description

## Tests
This commit is contained in:
Neeraj Gupta 2024-05-27 18:12:45 +05:30 committed by GitHub
commit ae61fc9c6f
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -161,7 +161,8 @@ class _ClusterPageState extends State<ClusterPage> {
),
),
showNamingBanner
? Dismissible(
? SafeArea(
child: Dismissible(
key: const Key("namingBanner"),
direction: DismissDirection.horizontal,
onDismissed: (direction) {
@ -199,6 +200,7 @@ class _ClusterPageState extends State<ClusterPage> {
}
},
),
),
)
: const SizedBox.shrink(),
],