Closed fzingg closed 6 years ago
state test: false will init to nil whereas state test: true will init to true
state test: false
nil
state test: true
true
So if you have for example:
Sem.Sidebar(visible: state.test)
will not work because false is waited.
Workaround: Use visible: !!state.test OR state :test { false }
visible: !!state.test
fixed in lap10
state test: false
will init tonil
whereasstate test: true
will init totrue
So if you have for example:
will not work because false is waited.
Workaround: Use
visible: !!state.test
OR state :test { false }