class RequiredFieldsFragment : FlowFragment<RequiredFieldsContract.Presenter>, RequiredFieldsContract.View
RequiredFieldsFragment() |
val isActive: Boolean
Return the state of the fragment, this method should be use to know if an UI update could be performed. Call this method before every intention of UI update |
|
lateinit var missingField: Set<String> |
lateinit var primaryActionView: LoadingButton
a Button allowing the user to continue his path |
|
var secondaryActionView: Button? |
|
lateinit var uiConf: InternalUiConfiguration |
fun hideErrors(): Unit |
|
fun onCreateView(inflater: LayoutInflater, container: ViewGroup?, savedInstanceState: Bundle?): View? |
|
fun onViewCreated(view: View, savedInstanceState: Bundle?): Unit |
|
fun setPresenter(presenter: RequiredFieldsContract.Presenter): Unit
Ties a Presenter to a view |
|
fun showErrorDialog(error: ClientError, errorMessage: String?): Unit |
open fun hideProgress(): Unit
allow the user to click on the .primaryActionView |
|
open fun onCreate(savedInstanceState: Bundle?): Unit |
|
open fun onSaveInstanceState(outState: Bundle): Unit |
|
open fun onVisibilityChanged(isOpen: Boolean): Unit
This method is called when the soft keyboard has pop down or pop up. |
|
open fun showProgress(): Unit
prevent the user to click on the .primaryActionView |
const val INFORMATION_FIELD_MARGIN_BOTTOM: Float |
fun newInstance(uiConfiguration: InternalUiConfiguration): RequiredFieldsFragment |