package com.swmansion.rnscreens.gamma.common import androidx.fragment.app.Fragment /** * Implementors of this interface indicate that they do have a fragment associated with them, that * can be used to retrieve child fragment manager for nesting operations. */ interface FragmentProviding { fun getAssociatedFragment(): Fragment? }