-
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.
- Loading branch information
Showing
37 changed files
with
1,752 additions
and
13 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
4 changes: 3 additions & 1 deletion
4
...oveon/ui/packageandmovers/dummyPackage.kt → ...n/ui/packageandmovers/Moversandpackers.kt
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 |
---|---|---|
@@ -1,4 +1,6 @@ | ||
package dev.kingbond.moveon.ui.packageandmovers | ||
|
||
class dummyPackage { | ||
class Moversandpackers { | ||
|
||
|
||
} |
23 changes: 23 additions & 0 deletions
23
app/src/main/java/dev/kingbond/moveon/ui/packageandmovers/fragMov/confirm/confirmPage.kt
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 @@ | ||
package dev.kingbond.moveon.ui.packageandmovers.fragMov.confirm | ||
|
||
import android.os.Bundle | ||
import androidx.fragment.app.Fragment | ||
import android.view.LayoutInflater | ||
import android.view.View | ||
import android.view.ViewGroup | ||
import dev.kingbond.moveon.R | ||
|
||
|
||
class confirmPage : Fragment() { | ||
|
||
|
||
override fun onCreateView( | ||
inflater: LayoutInflater, container: ViewGroup?, | ||
savedInstanceState: Bundle? | ||
): View? { | ||
// Inflate the layout for this fragment | ||
return inflater.inflate(R.layout.fragment_confirm_page, container, false) | ||
} | ||
|
||
|
||
} |
31 changes: 31 additions & 0 deletions
31
app/src/main/java/dev/kingbond/moveon/ui/packageandmovers/fragMov/cost/CoastPage.kt
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,31 @@ | ||
package dev.kingbond.moveon.ui.packageandmovers.fragMov.cost | ||
|
||
import android.os.Bundle | ||
import androidx.fragment.app.Fragment | ||
import android.view.LayoutInflater | ||
import android.view.View | ||
import android.view.ViewGroup | ||
import android.widget.Button | ||
import androidx.navigation.Navigation | ||
import dev.kingbond.moveon.R | ||
|
||
class CoastPage : Fragment() { | ||
|
||
|
||
override fun onCreateView( | ||
inflater: LayoutInflater, container: ViewGroup?, | ||
savedInstanceState: Bundle? | ||
): View? { | ||
// Inflate the layout for this fragment | ||
val view =inflater.inflate(R.layout.fragment_coast_page, container, false) | ||
|
||
view.findViewById<Button>(R.id.coastBtn).setOnClickListener { | ||
Navigation.findNavController(view).navigate(R.id.action_coastPage_to_confirmPage) | ||
} | ||
|
||
|
||
return view | ||
} | ||
|
||
|
||
} |
30 changes: 30 additions & 0 deletions
30
app/src/main/java/dev/kingbond/moveon/ui/packageandmovers/fragMov/houseSize/HouseSize.kt
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,30 @@ | ||
package dev.kingbond.moveon.ui.packageandmovers.fragMov.houseSize | ||
|
||
import android.os.Bundle | ||
import androidx.fragment.app.Fragment | ||
import android.view.LayoutInflater | ||
import android.view.View | ||
import android.view.ViewGroup | ||
import android.widget.Button | ||
import androidx.navigation.Navigation | ||
import dev.kingbond.moveon.R | ||
|
||
|
||
class HouseSize : Fragment() { | ||
|
||
|
||
override fun onCreateView( | ||
inflater: LayoutInflater, container: ViewGroup?, | ||
savedInstanceState: Bundle? | ||
): View? { | ||
// Inflate the layout for this fragment | ||
val view= inflater.inflate(R.layout.fragment_house_size, container, false) | ||
|
||
view.findViewById<Button>(R.id.houseBtn).setOnClickListener { | ||
Navigation.findNavController(view).navigate(R.id.action_houseSize_to_houseCategory) | ||
} | ||
|
||
return view | ||
} | ||
|
||
} |
32 changes: 32 additions & 0 deletions
32
.../main/java/dev/kingbond/moveon/ui/packageandmovers/fragMov/housecategory/HouseCategory.kt
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,32 @@ | ||
package dev.kingbond.moveon.ui.packageandmovers.fragMov.housecategory | ||
|
||
import android.os.Bundle | ||
import androidx.fragment.app.Fragment | ||
import android.view.LayoutInflater | ||
import android.view.View | ||
import android.view.ViewGroup | ||
import android.widget.Button | ||
import androidx.navigation.Navigation | ||
import dev.kingbond.moveon.R | ||
|
||
|
||
|
||
class HouseCategory : Fragment() { | ||
|
||
|
||
override fun onCreateView( | ||
inflater: LayoutInflater, container: ViewGroup?, | ||
savedInstanceState: Bundle? | ||
): View? { | ||
// Inflate the layout for this fragment | ||
val view= inflater.inflate(R.layout.fragment_house_category, container, false) | ||
|
||
view.findViewById<Button>(R.id.categoryBtn).setOnClickListener { | ||
Navigation.findNavController(view).navigate(R.id.action_houseCategory_to_itemList) | ||
} | ||
|
||
return view | ||
} | ||
|
||
|
||
} |
33 changes: 33 additions & 0 deletions
33
app/src/main/java/dev/kingbond/moveon/ui/packageandmovers/fragMov/itemList/ItemList.kt
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,33 @@ | ||
package dev.kingbond.moveon.ui.packageandmovers.fragMov.itemList | ||
|
||
import android.os.Bundle | ||
import androidx.fragment.app.Fragment | ||
import android.view.LayoutInflater | ||
import android.view.View | ||
import android.view.ViewGroup | ||
import android.widget.Button | ||
import androidx.navigation.Navigation | ||
import dev.kingbond.moveon.R | ||
|
||
|
||
class ItemList : Fragment() { | ||
|
||
|
||
override fun onCreateView( | ||
inflater: LayoutInflater, container: ViewGroup?, | ||
savedInstanceState: Bundle? | ||
): View? { | ||
// Inflate the layout for this fragment | ||
val view= inflater.inflate(R.layout.fragment_item_list, container, false) | ||
|
||
view.findViewById<Button>(R.id.itemBtn).setOnClickListener { | ||
Navigation.findNavController(view).navigate(R.id.action_itemList_to_coastPage) | ||
} | ||
|
||
return view | ||
} | ||
|
||
|
||
|
||
|
||
} |
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,16 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<shape xmlns:android="http://schemas.android.com/apk/res/android" > | ||
<stroke | ||
android:width="1dp" | ||
android:color="#1E54B7" /> | ||
|
||
<solid android:color="#1F1F1F" /> | ||
|
||
<padding | ||
android:left="1dp" | ||
android:right="1dp" | ||
android:bottom="1dp" | ||
android:top="1dp" /> | ||
|
||
<corners android:radius="7dp" /> | ||
</shape> |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Oops, something went wrong.