File tree Expand file tree Collapse file tree
playground/frontend/playground_components/lib/src/widgets/dialogs Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -62,6 +62,7 @@ class ConfirmDialog extends StatelessWidget {
6262 crossAxisAlignment: CrossAxisAlignment .start,
6363 mainAxisSize: MainAxisSize .min,
6464 children: [
65+ //
6566 Text (
6667 title,
6768 style: Theme .of (context).textTheme.headlineMedium,
@@ -71,6 +72,7 @@ class ConfirmDialog extends StatelessWidget {
7172 padding: const EdgeInsets .only (top: BeamSizes .size8),
7273 child: Text (subtitle! ),
7374 ),
75+
7476 const SizedBox (height: BeamSizes .size8),
7577 Row (
7678 mainAxisAlignment: MainAxisAlignment .end,
Original file line number Diff line number Diff line change @@ -23,6 +23,7 @@ import 'package:flutter/material.dart';
2323class ProgressDialog extends StatelessWidget {
2424 const ProgressDialog ();
2525
26+ /// Shows a dialog with [CircularProgressIndicator] until [future] completes.
2627 static void show ({
2728 required Future future,
2829 required GlobalKey <NavigatorState > navigatorKey,
You can’t perform that action at this time.
0 commit comments