mirror of
https://github.com/inventree/inventree-app.git
synced 2025-05-03 15:58:54 +00:00
Add some icon
This commit is contained in:
parent
429856fccb
commit
b9c9b8acc1
@ -179,14 +179,20 @@ class _InvenTreeLoginSettingsState extends State<InvenTreeLoginSettingsWidget> {
|
|||||||
Navigator.of(context).pop();
|
Navigator.of(context).pop();
|
||||||
_selectProfile(context, profile);
|
_selectProfile(context, profile);
|
||||||
},
|
},
|
||||||
child: Text(L10().profileConnect),
|
child: ListTile(
|
||||||
|
title: Text(L10().profileConnect),
|
||||||
|
leading: FaIcon(FontAwesomeIcons.server),
|
||||||
|
)
|
||||||
),
|
),
|
||||||
SimpleDialogOption(
|
SimpleDialogOption(
|
||||||
onPressed: () {
|
onPressed: () {
|
||||||
Navigator.of(context).pop();
|
Navigator.of(context).pop();
|
||||||
_editProfile(context, userProfile: profile);
|
_editProfile(context, userProfile: profile);
|
||||||
},
|
},
|
||||||
child: Text(L10().profileEdit),
|
child: ListTile(
|
||||||
|
title: Text(L10().profileEdit),
|
||||||
|
leading: FaIcon(FontAwesomeIcons.edit)
|
||||||
|
)
|
||||||
),
|
),
|
||||||
SimpleDialogOption(
|
SimpleDialogOption(
|
||||||
onPressed: () {
|
onPressed: () {
|
||||||
@ -200,7 +206,10 @@ class _InvenTreeLoginSettingsState extends State<InvenTreeLoginSettingsWidget> {
|
|||||||
}
|
}
|
||||||
);
|
);
|
||||||
},
|
},
|
||||||
child: Text(L10().profileDelete),
|
child: ListTile(
|
||||||
|
title: Text(L10().profileDelete),
|
||||||
|
leading: FaIcon(FontAwesomeIcons.trashAlt),
|
||||||
|
)
|
||||||
)
|
)
|
||||||
],
|
],
|
||||||
);
|
);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user