File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -98,18 +98,18 @@ open BsReactNative;
9898 Style.style([
9999 Style.flexDirection(Column),
100100 Style.backgroundColor("#6698FF"),
101- Style.marginTop(Pt(5))
101+ Style.marginTop(Pt(5. ))
102102 ])
103103 )
104104/>;
105105
106106/* inline styles with a local open */
107- <View style=Style.(style([flexDirection(Column), backgroundColor("#6698FF"), marginTop(Pt(5))])) />;
107+ <View style=Style.(style([flexDirection(Column), backgroundColor("#6698FF"), marginTop(Pt(5. ))])) />;
108108
109109/* StyleSheets with a local open */
110110let styles =
111111 StyleSheet.create(
112- Style.({"wrapper": style([flexDirection(Column), backgroundColor("#6698FF"), marginTop(Pt(5))])})
112+ Style.({"wrapper": style([flexDirection(Column), backgroundColor("#6698FF"), marginTop(Pt(5. ))])})
113113 );
114114
115115<View style=styles##wrapper />;
You can’t perform that action at this time.
0 commit comments