With DOM, you can easily create a trigger custom event with Javascript like so:
var event = new Event('build');
// Listen for the event.
elem.addEventListener('build', function (e) { /* ... */ }, false);
// Dispatch the event.
elem.dispatchEvent(event);
Is there a way to do that with React-Native?