-
Notifications
You must be signed in to change notification settings - Fork 24.8k
Closed
Labels
Ran CommandsOne of our bots successfully processed a command.One of our bots successfully processed a command.Resolution: LockedThis issue was locked by the bot.This issue was locked by the bot.
Description
when I create a custom view, it has several properties, how can I make sure these properties' order.
RCT_CUSTOM_VIEW_PROPERTY(props1, NSInteger, MyView) {
doSomeThing1();
}
RCT_CUSTOM_VIEW_PROPERTY(props2, NSInteger, MyView) {
doSomeThing2();
}
doSomeThing2
depend on doSomeThing1
, so when I set default property I want doSomeThing1 exec before doSomeThing2, as follows:
<MyView props1={1} props2={2} />
Is there has some ways to solve it?
Metadata
Metadata
Assignees
Labels
Ran CommandsOne of our bots successfully processed a command.One of our bots successfully processed a command.Resolution: LockedThis issue was locked by the bot.This issue was locked by the bot.