Valentin Shergin e3a3999b75 Fabric: ScrollView: primitives and buck target
Summary: Trivial.

Reviewed By: fkgozali

Differential Revision: D7961870

fbshipit-source-id: 3cfd92bd441dbf516ade777e6428924e9634257a
2018-05-17 20:28:50 -07:00

33 lines
500 B
C++

/**
* Copyright (c) 2015-present, Facebook, Inc.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/
#pragma once
namespace facebook {
namespace react {
enum class ScrollViewSnapToAlignment {
Start,
Center,
End
};
enum class ScrollViewIndicatorStyle {
Default,
Black,
White
};
enum class ScrollViewKeyboardDismissMode {
None,
OnDrag,
Interactive
};
} // namespace react
} // namespace facebook