Change name of android app.

This commit is contained in:
Ryan Pandya 2023-06-06 00:52:21 -04:00
parent 66028b831d
commit 5eb90ac1e1
2 changed files with 3 additions and 3 deletions

View File

@ -1,7 +1,7 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android"> <manifest xmlns:android="http://schemas.android.com/apk/res/android">
<uses-permission android:name="android.permission.INTERNET"/> <uses-permission android:name="android.permission.INTERNET"/>
<application <application
android:label="ltx_flutter" android:label="Lifetracker"
android:name="${applicationName}" android:name="${applicationName}"
android:icon="@mipmap/ic_launcher"> android:icon="@mipmap/ic_launcher">
<!-- Add this inside the `<application>` tag, along side the existing `<activity>` tags --> <!-- Add this inside the `<application>` tag, along side the existing `<activity>` tags -->

View File

@ -72,7 +72,7 @@ class _InfinityViewState extends State<InfinityView> {
try { try {
Category category = categories.lookUp(hour.toString()); Category category = categories.lookUp(hour.toString());
tooltip = category.description!; tooltip = category.name!;
fgColor = category.foregroundColor; fgColor = category.foregroundColor;
bgColor = category.backgroundColor; bgColor = category.backgroundColor;
} catch (e) { } catch (e) {
@ -89,7 +89,7 @@ class _InfinityViewState extends State<InfinityView> {
color: bgColor, color: bgColor,
child: Center( child: Center(
child: Text( child: Text(
style: TextStyle(fontSize: 10, color: fgColor), style: TextStyle(fontSize: 10, color: bgColor),
hour.toString())), hour.toString())),
), ),
), ),