Skip to content

Commit

Permalink
comment fixes (apache#25255)
Browse files Browse the repository at this point in the history
  • Loading branch information
darkhan.nausharipov committed Feb 14, 2023
1 parent a5110e4 commit 3f3747c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,7 @@ class ConfirmDialog extends StatelessWidget {
crossAxisAlignment: CrossAxisAlignment.start,
mainAxisSize: MainAxisSize.min,
children: [
//
Text(
title,
style: Theme.of(context).textTheme.headlineMedium,
Expand All @@ -71,6 +72,7 @@ class ConfirmDialog extends StatelessWidget {
padding: const EdgeInsets.only(top: BeamSizes.size8),
child: Text(subtitle!),
),

const SizedBox(height: BeamSizes.size8),
Row(
mainAxisAlignment: MainAxisAlignment.end,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ import 'package:flutter/material.dart';
class ProgressDialog extends StatelessWidget {
const ProgressDialog();

/// Shows a dialog with [CircularProgressIndicator] until [future] completes.
static void show({
required Future future,
required GlobalKey<NavigatorState> navigatorKey,
Expand Down

0 comments on commit 3f3747c

Please sign in to comment.