mirror of
https://github.com/MinimalBible/MinimalBible
synced 2025-07-04 15:25:14 -04:00
Add UI skeleton for searching
This commit is contained in:
@ -0,0 +1,13 @@
|
||||
package org.bspeice.minimalbible.activity.search
|
||||
|
||||
import org.crosswire.jsword.passage.Verse
|
||||
|
||||
/**
|
||||
* This is the entry point for handling the actual bible search. Likely will support
|
||||
* an "advanced" search in the future, but for now, basicTextSearch is what you get.
|
||||
*/
|
||||
class SearchProvider() {
|
||||
|
||||
public fun basicTextSearch(text: String): List<Verse> =
|
||||
listOf()
|
||||
}
|
Reference in New Issue
Block a user