Skip to content

Commit

Permalink
random fox demo mvi placeholder added
Browse files Browse the repository at this point in the history
  • Loading branch information
myofficework000 committed Mar 24, 2024
1 parent 018d4d8 commit a2e4347
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 4 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
package com.example.jetpack_compose_all_in_one.demos.random_fox

import androidx.compose.runtime.Composable
import androidx.compose.ui.tooling.preview.Preview

@Preview
@Composable
fun RandomFoxUIPrev() {
//call the @RandomFoxUI function
}

@Composable
fun RandomFoxUI() {
//Implement the UI for random Fox here...
}
Original file line number Diff line number Diff line change
Expand Up @@ -38,14 +38,10 @@ class RandomFoxImpl @Inject constructor(@RandomFoxAPI val service: RandomFoxServ
it.toString()
)
)

}
}

}

}

override fun getRandomFoxRxJava() = service.getRandomFoxUsingRxJava()

}

0 comments on commit a2e4347

Please sign in to comment.