From 5eb90ac1e1c437625bb096ea701f88fae5cbf4b0 Mon Sep 17 00:00:00 2001 From: Ryan Pandya Date: Tue, 6 Jun 2023 00:52:21 -0400 Subject: [PATCH] Change name of android app. --- ltx_flutter/android/app/src/main/AndroidManifest.xml | 2 +- ltx_flutter/lib/pages/today_views/infinity_view.dart | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/ltx_flutter/android/app/src/main/AndroidManifest.xml b/ltx_flutter/android/app/src/main/AndroidManifest.xml index 641d9c2..7340912 100644 --- a/ltx_flutter/android/app/src/main/AndroidManifest.xml +++ b/ltx_flutter/android/app/src/main/AndroidManifest.xml @@ -1,7 +1,7 @@ diff --git a/ltx_flutter/lib/pages/today_views/infinity_view.dart b/ltx_flutter/lib/pages/today_views/infinity_view.dart index d0e01a6..e396b25 100644 --- a/ltx_flutter/lib/pages/today_views/infinity_view.dart +++ b/ltx_flutter/lib/pages/today_views/infinity_view.dart @@ -72,7 +72,7 @@ class _InfinityViewState extends State { try { Category category = categories.lookUp(hour.toString()); - tooltip = category.description!; + tooltip = category.name!; fgColor = category.foregroundColor; bgColor = category.backgroundColor; } catch (e) { @@ -89,7 +89,7 @@ class _InfinityViewState extends State { color: bgColor, child: Center( child: Text( - style: TextStyle(fontSize: 10, color: fgColor), + style: TextStyle(fontSize: 10, color: bgColor), hour.toString())), ), ),