/* * Copyright (c) Facebook, Inc. and its affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. */ #include "AndroidDropdownPickerEventEmitter.h" namespace facebook { namespace react { void AndroidDropdownPickerEventEmitter::onSelect( AndroidDropdownPickerOnSelectStruct event) const { dispatchEvent("select", [event = std::move(event)](jsi::Runtime &runtime) { auto payload = jsi::Object(runtime); payload.setProperty(runtime, "position", event.position); return payload; }); } } // namespace react } // namespace facebook