Skip to content

Commit

Permalink
mobile: show +, # and export icon in selection header
Browse files Browse the repository at this point in the history
  • Loading branch information
ammarahm-ed committed Sep 21, 2023
1 parent 5a965f6 commit c327a29
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions apps/mobile/app/components/selection-header/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -207,7 +207,6 @@ export const SelectionHeader = React.memo(() => {

{screen === "Trash" ||
screen === "Notebooks" ||
screen === "Notebook" ||
screen === "Reminders" ? null : (
<>
<IconButton
Expand All @@ -224,33 +223,34 @@ export const SelectionHeader = React.memo(() => {
name="pound"
size={SIZE.xl}
/>

<IconButton
onPress={async () => {
//setSelectionMode(false);
await sleep(100);
MoveNoteSheet.present();
ExportNotesSheet.present(selectedItemsList);
}}
tooltipText="Export"
tooltipPosition={4}
customStyle={{
marginLeft: 10
}}
tooltipText="Add to notebooks"
tooltipPosition={4}
color={colors.primary.paragraph}
name="plus"
name="export"
size={SIZE.xl}
/>

<IconButton
onPress={async () => {
ExportNotesSheet.present(selectedItemsList);
//setSelectionMode(false);
await sleep(100);
MoveNoteSheet.present();
}}
tooltipText="Export"
tooltipPosition={4}
customStyle={{
marginLeft: 10
}}
tooltipText="Add to notebooks"
tooltipPosition={4}
color={colors.primary.paragraph}
name="export"
name="plus"
size={SIZE.xl}
/>
</>
Expand Down

0 comments on commit c327a29

Please sign in to comment.