File tree Expand file tree Collapse file tree 2 files changed +6
-6
lines changed
packages/react-native/ReactAndroid/src/main/java/com/facebook/react/uimanager/style Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -14,15 +14,15 @@ import androidx.annotation.ColorInt
1414import com.facebook.react.modules.i18nmanager.I18nUtil
1515
1616internal data class ColorEdges (
17- @ColorInt val left : Int = Color .BLACK ,
18- @ColorInt val top : Int = Color .BLACK ,
19- @ColorInt val right : Int = Color .BLACK ,
20- @ColorInt val bottom : Int = Color .BLACK ,
17+ @param: ColorInt val left : Int = Color .BLACK ,
18+ @param: ColorInt val top : Int = Color .BLACK ,
19+ @param: ColorInt val right : Int = Color .BLACK ,
20+ @param: ColorInt val bottom : Int = Color .BLACK ,
2121)
2222
2323@JvmInline
2424internal value class BorderColors (
25- @ColorInt val edgeColors : Array <Int ?> = arrayOfNulls<Int ?>(LogicalEdge .values().size)
25+ @param: ColorInt val edgeColors : Array <Int ?> = arrayOfNulls<Int ?>(LogicalEdge .values().size)
2626) {
2727
2828 fun resolve (layoutDirection : Int , context : Context ): ColorEdges {
Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ import com.facebook.react.bridge.ReadableType
1818public data class BoxShadow (
1919 val offsetX : Float ,
2020 val offsetY : Float ,
21- @ColorInt val color : Int? = null ,
21+ @param: ColorInt val color : Int? = null ,
2222 val blurRadius : Float? = null ,
2323 val spreadDistance : Float? = null ,
2424 val inset : Boolean? = null ,
You can’t perform that action at this time.
0 commit comments