Feathers UI - Can I disable a layout and enable it again?

In Feathers UI, is it possible to use a layout to arrange components. Then disable it for some time. And then enable it again? I am trying to use such algorithm for component animation intro.

Perhaps your components could use AssetLoader, which can hold a non-Feathers display object. After the layout is complete you could record the positions and re-parent them before performing your animation. Parent them again when you want them back in Feathers.

I am using that way. But it takes a lot of steps. Becomes hard to manage.

You can set the layout property to null to disable the layout temporarily. Then, set it back to the layout object when you want to enable it again.

Thanks. Will try that.