Skip to content

Commit 12882fb

Browse files
author
darkhan.nausharipov
committed
addressing review (apache#25255)
1 parent 440d0b0 commit 12882fb

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

playground/frontend/playground_components/lib/src/widgets/dialogs/confirm.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,8 @@ class ConfirmDialog extends StatelessWidget {
3636
static Future<bool> show({
3737
required BuildContext context,
3838
required String title,
39-
required String? subtitle,
4039
required String confirmButtonText,
40+
String? subtitle,
4141
}) async {
4242
return await showDialog(
4343
context: context,

playground/frontend/playground_components/lib/src/widgets/overlay/overlays.dart

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,8 @@ import '../../../playground_components.dart';
2222

2323
/// Groups common overlays.
2424
class BeamOverlays {
25-
/// Shows an overlay until future completes.
25+
/// Shows an overlay with [CircularProgressIndicator]
26+
/// until [future] completes.
2627
static Future<void> showProgressOverlay(
2728
BuildContext context,
2829
Future future,

0 commit comments

Comments
 (0)