-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
tried 3 different entry points for app navigation, xml, compose, xml …
…+ compose
- Loading branch information
1 parent
81bcc17
commit ac4f143
Showing
7 changed files
with
175 additions
and
63 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<menu xmlns:android="http://schemas.android.com/apk/res/android"> | ||
<item | ||
android:id="@+id/fragment_home_view" | ||
android:title="Home" | ||
android:icon="@drawable/icon_svg_home"/> | ||
<item | ||
android:id="@+id/fragment_console_view" | ||
android:title="Console" | ||
android:icon="@drawable/icon_svg_monitor"/> | ||
<item | ||
android:id="@+id/fragment_packages_view" | ||
android:title="Payload" | ||
android:icon="@drawable/icon_svg_folder"/> | ||
<item | ||
android:id="@+id/fragment_ftp_view" | ||
android:title="FTP" | ||
android:icon="@drawable/icon_svg_upload_two"/> | ||
<item | ||
android:id="@+id/fragment_settings_view" | ||
android:title="Setting" | ||
android:icon="@drawable/icon_svg_settings"/> | ||
</menu> |