mirror of
https://github.com/zhigang1992/react-native.git
synced 2026-04-30 14:02:44 +08:00
Reviewed By: lucasr Differential Revision: D3312496 fbshipit-source-id: 259b6db2fc0166696eb171dc6e2974c81ec2133f
23 lines
746 B
Java
23 lines
746 B
Java
/**
|
|
* Copyright (c) 2014-present, Facebook, Inc.
|
|
* All rights reserved.
|
|
* This source code is licensed under the BSD-style license found in the
|
|
* LICENSE file in the root directory of this source tree. An additional grant
|
|
* of patent rights can be found in the PATENTS file in the same directory.
|
|
*/
|
|
|
|
// NOTE: this file is auto-copied from https://github.com/facebook/css-layout
|
|
// @generated SignedSource<<fe2172034939f4e8919ad4b533f27703>>
|
|
|
|
package com.facebook.csslayout;
|
|
|
|
public class CSSCachedMeasurement {
|
|
public float availableWidth;
|
|
public float availableHeight;
|
|
public CSSMeasureMode widthMeasureMode = null;
|
|
public CSSMeasureMode heightMeasureMode = null;
|
|
|
|
public float computedWidth;
|
|
public float computedHeight;
|
|
}
|