mirror of
https://github.com/status-im/react-native.git
synced 2025-01-09 17:15:54 +00:00
711abeda79
Summary: `enum class` types do not provide default conversion to integers and reguire use typename before value names. This must prevent bugs like the previous one where we used `Undefined` as a number value. Reviewed By: fkgozali Differential Revision: D7554548 fbshipit-source-id: b19379aae48c9aebe03043e08cf3acc712da3cb8
34 lines
583 B
C++
34 lines
583 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 {
|
|
|
|
/*
|
|
* Defines visibility of the shadow node and partucular layout
|
|
* engine which should be used for laying out the node.
|
|
*/
|
|
enum class DisplayType {
|
|
None,
|
|
Flex,
|
|
Inline,
|
|
};
|
|
|
|
/*
|
|
* User interface layout direction.
|
|
*/
|
|
enum class LayoutDirection {
|
|
Undefined,
|
|
LeftToRight,
|
|
RightToLeft,
|
|
};
|
|
|
|
} // namespace react
|
|
} // namespace facebook
|