Добавил локализацию FAQ. Добавил номера телефонов и url сайтов.

This commit is contained in:
Ivan Murashov
2017-09-19 18:55:34 +03:00
parent 6f76ea7b2a
commit 4890bb4065
12 changed files with 233 additions and 91 deletions

View File

@@ -35,7 +35,7 @@ class RegistrationScreenState extends BaseState<RegistrationScreen> {
return StringsLocalization.registration();
}
@override getHint() {
@override getHintString() {
return StringsLocalization.idStore();
}
@@ -54,7 +54,7 @@ class RegistrationScreenState extends BaseState<RegistrationScreen> {
@override getTextWidget() {
return new TextField(keyboardType: TextInputType.number,
decoration: new InputDecoration.collapsed(hintText: getHint(),
decoration: new InputDecoration.collapsed(hintText: getHintString(),
hintStyle: new TextStyle(color: greyTextColor, fontSize: 16.0)),
onChanged: (text) => handleUserInput(text));
}