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