fix: reaction entry always pops up on the top layer (#3562)

* fix: reaction entry always pops up on the top layer

* formatting

---------

Co-authored-by: ggurdin <ggurdin@gmail.com>
pull/2245/head
avashilling 3 months ago committed by GitHub
parent 198cd4c9bb
commit e246816187
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -516,12 +516,14 @@ class _AdaptableReactorsDialog extends StatelessWidget {
context: context,
builder: (context) => this,
barrierDismissible: true,
useRootNavigator: false,
useRootNavigator: true,
);
@override
Widget build(BuildContext context) {
final body = SingleChildScrollView(
final body = Material(
type: MaterialType.transparency,
child: SingleChildScrollView(
child: Wrap(
spacing: 8.0,
runSpacing: 4.0,
@ -539,6 +541,7 @@ class _AdaptableReactorsDialog extends StatelessWidget {
),
],
),
),
);
final title = Center(child: Text(reactionEntry!.key));

Loading…
Cancel
Save