1
我一直在讀巖性的文檔,我發現這個代碼示例Litho的@FromPrepare註釋有什麼作用?
@LayoutSpec(events = { ColorChangedEvent.class })
class ColorComponentSpec {
...
@OnCreateLayout
static ComponentLayout onCreateLayout(
Context c,
@Prop EventHandler colorChangedHandler,
@FromPrepare int color) {
...
ColorComponent.dispatchColorChangedEvent(
colorChangedHandler,
color);
...
}
}
什麼是@FromPrepare註解嗎?
我們現在已經從文檔中刪除了這個:https://github.com/facebook/litho/commit/872539968179b5cea46bde8cc813a0117d24f452 – passy