We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 209e15c commit 39ffdc6Copy full SHA for 39ffdc6
app/lib/widgets/components/general/toasts.dart
@@ -182,6 +182,7 @@ class ToastDisplay extends HookConsumerWidget {
182
bottom: 0,
183
child: SingleChildScrollView(
184
child: Column(
185
+ mainAxisSize: MainAxisSize.min,
186
children: [
187
for (final toast in toasts)
188
if (toast is TemporaryToast)
@@ -259,6 +260,10 @@ class _TemporaryToast extends HookConsumerWidget {
259
260
return Card(
261
color: toast.color,
262
elevation: 4.0,
263
+ shape: RoundedRectangleBorder(
264
+ borderRadius: BorderRadius.circular(8.0),
265
+ ),
266
+ clipBehavior: Clip.antiAlias,
267
child: SizedBox(
268
width: width,
269
0 commit comments