Budget Form Component
The BudgetFormComponent
allows the user to set up a new budget.
To use this view, just call the BudgetFormComponent
method of your LuneSDKManager
instance as shown in the example below.
// BudgetFormView.kt
import io.lunedata.lunesdk.library.classes.LuneSDKManager
@Composable
fun BudgetFormView(
luneSDK: LuneSDKManager
) {
luneSDK.BudgetFormComponent()
}
To use this view in a project with Activities and Fragments, set the component
property of your view to LuneView.BudgetFormComponent
, as shown in the example below.
// YourActivity.kt
override fun onCreate(savedInstanceState: Bundle?) {
super.onCreate(savedInstanceState)
// Grab our luneView and set the component property.
val luneView = findViewById<LuneCompatManager>(R.id.luneLayout)
luneView.component = LuneView.BudgetFormComponent
}
ON THIS PAGE