From 94df2853c0c50a98f23383a03ba48c43c29beea3 Mon Sep 17 00:00:00 2001 From: Vishesh Handa Date: Wed, 9 Oct 2019 16:50:04 +0200 Subject: [PATCH] Note Viewer: Delete Dialog: Use more standard Text After reading the Material Design Guide, I feel some more standard text such as "Delete" / "Cancel" is better vs "Delete It" / "Keep It". --- lib/screens/note_viewer.dart | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/screens/note_viewer.dart b/lib/screens/note_viewer.dart index df56403d..65ee71c5 100644 --- a/lib/screens/note_viewer.dart +++ b/lib/screens/note_viewer.dart @@ -106,14 +106,14 @@ class NoteBrowsingScreenState extends State { actions: [ FlatButton( onPressed: () => Navigator.pop(context), - child: Text('Keep It'), + child: Text('Cancel'), ), FlatButton( onPressed: () { Navigator.pop(context); // Alert box _deleteNote(context); }, - child: Text('Delete It'), + child: Text('Delete'), ), ], );