mirror of
https://github.com/cmclark00/TetriStats.git
synced 2025-05-23 09:15:21 +01:00
Initial commit: TetriStats Application with score tracking, conversion, and statistics for multiple Tetris games
This commit is contained in:
commit
ca8b4fd77b
78 changed files with 2587 additions and 0 deletions
25
app/src/main/res/navigation/mobile_navigation.xml
Normal file
25
app/src/main/res/navigation/mobile_navigation.xml
Normal file
|
@ -0,0 +1,25 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<navigation xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
xmlns:app="http://schemas.android.com/apk/res-auto"
|
||||
xmlns:tools="http://schemas.android.com/tools"
|
||||
android:id="@+id/mobile_navigation"
|
||||
app:startDestination="@+id/navigation_entry">
|
||||
|
||||
<fragment
|
||||
android:id="@+id/navigation_entry"
|
||||
android:name="com.accidentalproductions.tetristats.ui.entry.EntryFragment"
|
||||
android:label="Enter Score"
|
||||
tools:layout="@layout/fragment_entry" />
|
||||
|
||||
<fragment
|
||||
android:id="@+id/navigation_history"
|
||||
android:name="com.accidentalproductions.tetristats.ui.history.HistoryFragment"
|
||||
android:label="Score History"
|
||||
tools:layout="@layout/fragment_history" />
|
||||
|
||||
<fragment
|
||||
android:id="@+id/navigation_stats"
|
||||
android:name="com.accidentalproductions.tetristats.ui.stats.StatsFragment"
|
||||
android:label="Statistics"
|
||||
tools:layout="@layout/fragment_stats" />
|
||||
</navigation>
|
Loading…
Add table
Add a link
Reference in a new issue