Добавил экран FAQ со всеми описаниями

This commit is contained in:
kifio
2017-07-25 08:36:23 +03:00
parent ff0573d65d
commit 8738fbfd39
7 changed files with 109 additions and 24 deletions

View File

@@ -14,10 +14,6 @@ class PurchaseScreen extends StatefulWidget {
class PurchaseScreenState<T> extends BaseState<T> {
PurchaseScreenState() {
}
String integerPart = '', fractionalPart = '';
@override String getTitle() {
@@ -30,8 +26,8 @@ class PurchaseScreenState<T> extends BaseState<T> {
@overide getMenuButtons(BuildContext context) {
return <Widget>[
new IconButton(icon: new Icon(Icons.help_outline), onPressed: () {}),
new IconButton(icon: new Image.asset(logout_png, height: iconHeight, width: iconHeight), onPressed: () => logout(context))
new getFaqButton(),
new getLogoutButton()
];
}
@@ -71,7 +67,7 @@ class PurchaseScreenState<T> extends BaseState<T> {
integerPart = tmpString;
controller.text = tmpString;
}
textFieldValue = controller.text;
textFieldValue = tmpString;
});
}