Browse Source

Update padding for day title

vishnukvmd 3 years ago
parent
commit
b4b6f65db2
1 changed files with 1 additions and 1 deletions
  1. 1 1
      lib/utils/date_time_util.dart

+ 1 - 1
lib/utils/date_time_util.dart

@@ -166,7 +166,7 @@ bool isLeapYear(DateTime dateTime) {
 Widget getDayWidget(
 Widget getDayWidget(
     BuildContext context, int timestamp, bool smallerTodayFont) {
     BuildContext context, int timestamp, bool smallerTodayFont) {
   return Container(
   return Container(
-    padding: const EdgeInsets.fromLTRB(12, 14, 0, 12),
+    padding: const EdgeInsets.fromLTRB(4, 14, 0, 8),
     alignment: Alignment.centerLeft,
     alignment: Alignment.centerLeft,
     child: Text(
     child: Text(
       getDayTitle(timestamp),
       getDayTitle(timestamp),