Przeglądaj źródła

Capitalize words

Neeraj Gupta 3 lat temu
rodzic
commit
3710c52a11
1 zmienionych plików z 2 dodań i 2 usunięć
  1. 2 2
      lib/ui/common/dialogs.dart

+ 2 - 2
lib/ui/common/dialogs.dart

@@ -11,9 +11,9 @@ Future<DialogUserChoice> showChoiceDialog<T>(
   BuildContext context,
   String title,
   String content, {
-  String firstAction = 'ok',
+  String firstAction = 'Ok',
   Color firstActionColor,
-  String secondAction = 'cancel',
+  String secondAction = 'Cancel',
   Color secondActionColor,
   ActionType actionType = ActionType.confirm,
 }) {