Add item descriptions to Help information and clarify the updating section.
This commit is contained in:
parent
e896611bd1
commit
1966f72c93
@ -1,4 +1,5 @@
|
|||||||
// Flutter
|
// Flutter
|
||||||
|
import '/models/item_type.dart';
|
||||||
import 'package:flutter/material.dart';
|
import 'package:flutter/material.dart';
|
||||||
import 'package:url_launcher/url_launcher_string.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,"
|
"\t\t This app is meant to be a simple budgeting tool,"
|
||||||
" allowing you to view your income and expenses at a high"
|
" allowing you to view your income and expenses at a high"
|
||||||
" level without micro managing specific budget items or"
|
" 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(
|
Text(
|
||||||
"\n\t\t Tracked items can be swiped left to right for"
|
"\n\t\t Tracked items can be swiped left to right for"
|
||||||
" Deletion or right to left for Editing. Items are sorted"
|
" Deletion or right to left for Editing. Items are sorted"
|
||||||
" from highest to lowest so that the biggest impacts are"
|
" from highest to lowest so that the biggest impacts are"
|
||||||
" always in view.",
|
" always in view."
|
||||||
|
"",
|
||||||
),
|
),
|
||||||
Text(
|
Text(
|
||||||
"\n\t\t To subscribe to app updates, install the Obtanium"
|
"\n\t\t To subscribe to Android updates, install Obtanium,"
|
||||||
" app, then use the URL from the Source Code button below."
|
" then use the URL from the Source Code button below."
|
||||||
" Otherwise the app needs installed manually by downloading"
|
" 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.")
|
//Text("Another paragraph.")
|
||||||
],
|
],
|
||||||
|
Loading…
x
Reference in New Issue
Block a user