abstract class BaseFragment : Fragment, AnimationListener |
|
interface ErrorField |
|
abstract class FlowFragment<in T> : BaseFragment, KeyboardVisibilityListener, FlowView<T>
a Fragment used to represents a part of a UI flow, as such, this fragment can continue a flow. the flow could be continue thanks to the keyboard or a button. |
|
interface FlowView<in T> : BaseView<T> |
|
interface InputField : ErrorField
Describes an input field which is entitled to prevent access to its content if it is considered invalid. Implementations should verify their input before potentially providing it. |
|
open class WebFragment : BaseFragment
a |