Skip to content

Commit

Permalink
Merge branch 'UserInterfaceHustle' of https://github.com/wlauppe/koch…
Browse files Browse the repository at this point in the history
…buchapp into UserInterfaceHustle
  • Loading branch information
LeMagnusB committed Feb 16, 2020
2 parents 4b37541 + e0749ab commit b1e5ff1
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,12 @@ import androidx.fragment.app.viewModels
import de.psekochbuch.exzellenzkoch.InjectorUtils
import de.psekochbuch.exzellenzkoch.userinterfacelayer.viewmodel.SearchWithTagsViewModel

/**
* The Fragment class provides logic for binding the respective .xml layout file to the class
* and calls functions from the underlying ViewModel.
* The ViewModel is provided by the ViewModelFactory, which is called here.
* SearchWithTagsFragment will bind to the SearchWithTagsFragment which will be implemented.
*/
class SearchWithTagsFragment : Fragment() {

override fun onCreateView(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,13 @@ import androidx.fragment.app.viewModels
import de.psekochbuch.exzellenzkoch.InjectorUtils
import de.psekochbuch.exzellenzkoch.userinterfacelayer.viewmodel.UserSearchViewmodel

/**
* The Fragment class provides logic for binding the respective .xml layout file to the class
* and calls functions from the underlying ViewModel.
* The ViewModel is provided by the ViewModelFactory, which is called here.
* The UserSearchFragment should display the User Search which will be defined in an xml file
* similar to the Recipe Search
*/
class UserSearchFragment : Fragment() {

override fun onCreateView(
Expand Down

0 comments on commit b1e5ff1

Please sign in to comment.