0

How to set a default value for an Observable Field of type Boolean

@Bindable
    var buttonEnabled: ObservableField<Boolean> = ObservableField()

1 Answer 1

2

welcome to stackoverflow, you can set it as follows:

@Bindable
    var buttonEnabled: ObservableField<Boolean> = ObservableField(true)

It is false by default.

Sign up to request clarification or add additional context in comments.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.