Skip to content
This repository has been archived by the owner on Oct 23, 2023. It is now read-only.

Commit

Permalink
refactor(navigation): create class NavigationItem to help handle the …
Browse files Browse the repository at this point in the history
…menu's item for navigation
  • Loading branch information
AndreaBrighi committed May 2, 2023
1 parent 4582ccd commit efa7c06
Showing 1 changed file with 9 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
package com.intelligentbackpack.app.utility

import androidx.compose.ui.graphics.vector.ImageVector

class NavigationItem(
val title: String,
val icon: ImageVector,
val action: () -> Unit
)

0 comments on commit efa7c06

Please sign in to comment.