Skip to content

Commit cf97d9a

Browse files
committed
Fixed capitalization issues
1 parent 158074a commit cf97d9a

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

lib/widgets/bug_report_dialog.dart

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -274,6 +274,7 @@ class _BugReportSheetState extends State<BugReportSheet> {
274274
const SizedBox(height: 8),
275275
TextFormField(
276276
controller: _usernameController,
277+
textCapitalization: TextCapitalization.words,
277278
decoration: _buildInputDecoration(
278279
theme,
279280
hintText: 'Your MeshCore companion name',
@@ -288,6 +289,7 @@ class _BugReportSheetState extends State<BugReportSheet> {
288289
const SizedBox(height: 8),
289290
TextFormField(
290291
controller: _titleController,
292+
textCapitalization: TextCapitalization.sentences,
291293
decoration: _buildInputDecoration(
292294
theme,
293295
hintText: 'Brief summary of the issue',
@@ -311,6 +313,7 @@ class _BugReportSheetState extends State<BugReportSheet> {
311313
const SizedBox(height: 8),
312314
TextFormField(
313315
controller: _descriptionController,
316+
textCapitalization: TextCapitalization.sentences,
314317
decoration: _buildInputDecoration(
315318
theme,
316319
hintText: 'Describe the issue or feature request...',

lib/widgets/status_bar.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,7 @@ class _StatusBarState extends State<StatusBar> {
156156
return ('RX Packets', 'RX packets that we have heard from the mesh. These were not initiated by us.', Icons.arrow_downward, Colors.blue);
157157

158158
case 'disc':
159-
return ('Discovery Requests', 'Discovery request packets we have sent out.', Icons.radar, const Color(0xFF7B68EE));
159+
return ('Discovery Requests', 'Discovery requests we have heard a response for.', Icons.radar, const Color(0xFF7B68EE));
160160

161161
case 'upload':
162162
return ('Uploaded', 'Pings sent to MeshMapper servers. Your data helps build the community coverage map!', Icons.cloud_done, Colors.teal);

0 commit comments

Comments
 (0)