Fixed icons in menues

This commit is contained in:
Joshua Higgins
2025-04-17 11:07:30 -04:00
parent fd183da648
commit 2f76539e1c

View File

@@ -74,6 +74,7 @@ export default function Index() {
ios: 'trash', ios: 'trash',
android: 'ic_menu_delete', android: 'ic_menu_delete',
}), }),
imageColor: "red",
}, },
]} ]}
shouldOpenOnLongPress={false} shouldOpenOnLongPress={false}
@@ -92,17 +93,17 @@ export default function Index() {
actions={[ actions={[
{ {
id: 'addComputer', id: 'addComputer',
title: 'Add Server', title: 'Add Computer',
titleColor: '#2367A2', titleColor: '#000000',
image: 'ic_menu_add', //TODO: Fix icons image: 'desktopcomputer',
imageColor: '#2367A2', imageColor: '#000000',
}, },
{ {
id: 'addServer', id: 'addServer',
title: 'Add Server', title: 'Add Server',
titleColor: '#2367A2', titleColor: '#000000',
image: 'ic_menu_add', image: 'globe',
imageColor: '#2367A2', imageColor: '#000000',
}, },
]} ]}
shouldOpenOnLongPress={false} shouldOpenOnLongPress={false}