menu items small fix (wrong images)
This commit is contained in:
@@ -67,14 +67,14 @@ abstract class BaseState<T extends StatefulWidget> extends State<T> {
|
||||
|
||||
menuItemList.add(new PopupMenuItem(
|
||||
value: 1,
|
||||
child: getMenuItem(settings_png, StringsLocalization.help())
|
||||
child: getMenuItem(help_png, StringsLocalization.help())
|
||||
));
|
||||
|
||||
helper.getToken().then((token){
|
||||
if (token != null) { // пользователь авторизован
|
||||
menuItemList.add(new PopupMenuItem(
|
||||
value: 2,
|
||||
child: getMenuItem(settings_png, StringsLocalization.logout())
|
||||
child: getMenuItem(logout_png, StringsLocalization.logout())
|
||||
));
|
||||
}
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user