We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
flexBasis+flexShrink+borderWidth result in an wrong value
<View style={{ marginTop: 100 }}> <View style={{ height: 100, marginTop: 20, flexDirection: 'row' }}> <View style={{ flexBasis: 0, flexGrow: 1, flexShrink: 1, borderWidth: 0.594443, //0.594441 or 0.594442 is correct, but 0.594443 & 0.594444 is in correct minWidth: 160, borderColor: '0xff000000', backgroundColor: 'red', }} onLayout={(e) => { console.log(e.nativeEvent.layout); }}></View> <View style={{ flexBasis: 0, flexGrow: 1, flexShrink: 1, borderWidth: 0.594442, minWidth: 160, borderColor: '0xff000000', backgroundColor: 'green', }} /> <View style={{ flexBasis: 0, flexGrow: 1, flexShrink: 1, borderWidth: 0.594442, minWidth: 160, borderColor: '0xff000000', backgroundColor: 'blue', }} /> <View style={{ flexBasis: 0, flexGrow: 1, flexShrink: 1, borderWidth: 0.594442, minWidth: 160, borderColor: '0xff000000', backgroundColor: 'yellow', }} /> </View> </View >
<div layout="width: 393; height: 852; top: 0; left: 0;" style="" > <div layout="width: 393; height: 852; top: 0; left: 0;" style="flex: 1; " > <div layout="width: 393; height: 852; top: 0; left: 0;" style="flex: 1; " > <div layout="width: 393; height: 120; top: 100; left: 0;" style="margin-top: 100px; " > <div layout="width: 393; height: 100; top: 20; left: 0;" style="flex-direction: row; margin-top: 20px; height: 100px; " > <div layout="width: 160; height: 100; top: 0; left: 0;" style="flex-grow: 1; flex-shrink: 1; flex-basis: 0px; border: 0.594442px; min-width: 160px; " ></div> <div layout="width: 160; height: 100; top: 0; left: 160;" style="flex-grow: 1; flex-shrink: 1; flex-basis: 0px; border: 0.594442px; min-width: 160px; " ></div> <div layout="width: 160; height: 100; top: 0; left: 320;" style="flex-grow: 1; flex-shrink: 1; flex-basis: 0px; border: 0.594442px; min-width: 160px; " ></div> <div layout="width: 160; height: 100; top: 0; left: 480;" style="flex-grow: 1; flex-shrink: 1; flex-basis: 0px; border: 0.594442px; min-width: 160px; " ></div> </div> </div> </div> </div> </div>
width=160 is an correct value
width=160
<div layout="width: 393; height: 852; top: 0; left: 0;" style="" > <div layout="width: 393; height: 852; top: 0; left: 0;" style="flex: 1; " > <div layout="width: 393; height: 852; top: 0; left: 0;" style="flex: 1; " > <div layout="width: 393; height: 120; top: 100; left: 0;" style="margin-top: 100px; " > <div layout="width: 393; height: 100; top: 20; left: 0;" style="flex-direction: row; margin-top: 20px; height: 100px; " > <div layout="width: 1.65759e+11; height: 100; top: 0; left: 0;" style="flex-grow: 1; flex-shrink: 1; flex-basis: 0px; border: 0.594443px; min-width: 160px; " ></div> <div layout="width: 1.65759e+11; height: 100; top: 0; left: 1.65759e+11;" style="flex-grow: 1; flex-shrink: 1; flex-basis: 0px; border: 0.594442px; min-width: 160px; " ></div> <div layout="width: 1.65759e+11; height: 100; top: 0; left: 3.31518e+11;" style="flex-grow: 1; flex-shrink: 1; flex-basis: 0px; border: 0.594442px; min-width: 160px; " ></div> <div layout="width: 1.65759e+11; height: 100; top: 0; left: 4.97277e+11;" style="flex-grow: 1; flex-shrink: 1; flex-basis: 0px; border: 0.594442px; min-width: 160px; " ></div> </div> </div> </div> </div> </div>
width=1.65759e+11 is an incorrect value
width=1.65759e+11
The text was updated successfully, but these errors were encountered:
when flexBasis: 0, flexShrink: 0 , No problem.
flexBasis: 0, flexShrink: 0
Sorry, something went wrong.
No branches or pull requests
Report
flexBasis+flexShrink+borderWidth result in an wrong value
Expected Behavior
width=160
is an correct valueActual Behavior
width=1.65759e+11
is an incorrect valueThe text was updated successfully, but these errors were encountered: