primitives.h 487 B

1234567891011121314151617181920
  1. /*
  2. * Copyright (c) Facebook, Inc. and its affiliates.
  3. *
  4. * This source code is licensed under the MIT license found in the
  5. * LICENSE file in the root directory of this source tree.
  6. */
  7. #pragma once
  8. namespace facebook {
  9. namespace react {
  10. enum class ScrollViewSnapToAlignment { Start, Center, End };
  11. enum class ScrollViewIndicatorStyle { Default, Black, White };
  12. enum class ScrollViewKeyboardDismissMode { None, OnDrag, Interactive };
  13. } // namespace react
  14. } // namespace facebook