diff --git a/lib/pages/help.dart b/lib/pages/help.dart index 7d8c5a2..429e168 100644 --- a/lib/pages/help.dart +++ b/lib/pages/help.dart @@ -1,4 +1,5 @@ // Flutter +import '/models/item_type.dart'; import 'package:flutter/material.dart'; import 'package:url_launcher/url_launcher_string.dart'; @@ -42,19 +43,29 @@ class HelpPage extends StatelessWidget { "\t\t This app is meant to be a simple budgeting tool," " allowing you to view your income and expenses at a high" " level without micro managing specific budget items or" - " adding receipts.", + " adding receipts." + "", + ), + Text( + "\n\t\t ${ItemType.expense.plural} are defined as ${ItemType.expense.description.toLowerCase()}" + " ${ItemType.income.title} is defined as ${ItemType.income.description.toLowerCase()}" + " ${ItemType.asset.plural} are defined as ${ItemType.asset.description.toLowerCase()}" + "", ), Text( "\n\t\t Tracked items can be swiped left to right for" " Deletion or right to left for Editing. Items are sorted" " from highest to lowest so that the biggest impacts are" - " always in view.", + " always in view." + "", ), Text( - "\n\t\t To subscribe to app updates, install the Obtanium" - " app, then use the URL from the Source Code button below." + "\n\t\t To subscribe to Android updates, install Obtanium," + " then use the URL from the Source Code button below." " Otherwise the app needs installed manually by downloading" - " APKs from the Source Code /releases/ page.", + " APKs from the Source Code /releases/ page. Linux users" + " currently need to install and update manually." + "", ), //Text("Another paragraph.") ],