|
|
|
@ -13,7 +13,9 @@ class AutocorrectPopup extends StatelessWidget {
|
|
|
|
@override
|
|
|
|
@override
|
|
|
|
Widget build(BuildContext context) {
|
|
|
|
Widget build(BuildContext context) {
|
|
|
|
final theme = Theme.of(context);
|
|
|
|
final theme = Theme.of(context);
|
|
|
|
return Container(
|
|
|
|
return Material(
|
|
|
|
|
|
|
|
type: MaterialType.transparency,
|
|
|
|
|
|
|
|
child: Container(
|
|
|
|
padding: const EdgeInsets.all(8.0),
|
|
|
|
padding: const EdgeInsets.all(8.0),
|
|
|
|
decoration: BoxDecoration(
|
|
|
|
decoration: BoxDecoration(
|
|
|
|
color: theme.colorScheme.surface.withAlpha(200),
|
|
|
|
color: theme.colorScheme.surface.withAlpha(200),
|
|
|
|
@ -30,6 +32,7 @@ class AutocorrectPopup extends StatelessWidget {
|
|
|
|
),
|
|
|
|
),
|
|
|
|
],
|
|
|
|
],
|
|
|
|
),
|
|
|
|
),
|
|
|
|
|
|
|
|
),
|
|
|
|
);
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|