diff --git a/ltx_flutter/lib/pages/today_views/day_view.dart b/ltx_flutter/lib/pages/today_views/day_view.dart index 2f4e265..67de65c 100644 --- a/ltx_flutter/lib/pages/today_views/day_view.dart +++ b/ltx_flutter/lib/pages/today_views/day_view.dart @@ -127,7 +127,7 @@ class _DayViewState extends State { child: Text( textAlign: TextAlign.center, style: TextStyle( - fontSize: 20, + fontSize: 18, ), formatDate( format: 'EEEEE, LLLL dd, yyyy', @@ -228,7 +228,9 @@ class _DayViewState extends State { comments: value); }, ) - : Text(comments.isEmpty ? "No comments yet." : comments), + : Text( + style: TextStyle(fontSize: 16), + comments.isEmpty ? "No comments yet." : comments), ), SizedBox(width: 30), _editable @@ -536,6 +538,7 @@ class _HourFormFieldState extends State { child: Consumer(builder: (context, database, child) { return TextFormField( showCursor: false, + autofillHints: [], key: Key( "hourField-${widget.dayEntry.$id}-${widget.index.toString()}"), onTap: () {}, @@ -556,8 +559,12 @@ class _HourFormFieldState extends State { }), ), SizedBox(width: 40), - Text( - style: TextStyle(color: fgColor, fontFamily: "Monospace"), catName), + Expanded( + child: Text( + overflow: TextOverflow.ellipsis, + style: TextStyle(color: fgColor, fontFamily: "Monospace"), + catName), + ), ], ); }