- Reply to issue mrousavy/react-native-vision-camera#2614
- Code review for PR Fix single line text not fully rendered on old architecture
Last active
March 5, 2024 09:08
-
-
Save fabOnReact/6a58c713d32ce5bb9c164b6906abac12 to your computer and use it in GitHub Desktop.
Notes March 2024
TextView takes the entire line
- TextView onMeasure calculatedWidth is 1080
- Text lineWidth is 406.0
- placeholderLeftPosition is 1080 - 406
CLICK TO OPEN SOURCECODE
import * as React from 'react';
import {Button, Image, StyleSheet, Text, TextInput, View} from 'react-native';
const smallImage = {
uri: 'https://www.facebook.com/favicon.ico',
};
export default function App() {
const email = 'مرحبا بالعالم من ف';
return (
<>
<Text writingDirection="rtl" style={styles.parentText} numberOfLines={1}>
<Text>{email}</Text>
<Image source={smallImage} style={{height: 50, width: 50}} />
</Text>
</>
);
}
const styles = StyleSheet.create({
parentText: {
backgroundColor: 'red',
},
});
Fabric
Before | After |
---|---|
Paper
Before | After |
---|---|
Image does not fix in TextView
CLICK TO OPEN TESTS RESULTS
import * as React from 'react';
import {Button, Image, StyleSheet, Text, TextInput, View} from 'react-native';
const smallImage = {
uri: 'https://www.facebook.com/favicon.ico',
};
export default function App() {
const email =
'From [email protected] From [email protected]';
return (
<>
<Text style={styles.parentText} numberOfLines={1}>
<Text>{email}</Text>
<Image source={smallImage} style={{height: 50, width: 50}} />
</Text>
</>
);
}
const styles = StyleSheet.create({
parentText: {
backgroundColor: 'red',
},
});
Fabric
Before | After |
---|---|
Paper
Before | After |
---|---|
Images do not fit in the line (parent applies flex style)
This is a separate issue caused by the logic that calculates placehoderTop and placeholderLeftPosition, which does not handle scenarios where text is single line. The image is positioned on the second line as if text would wrap on the second line.
CLICK TO OPEN SOURCECODE
import * as React from 'react';
import {Button, Image, StyleSheet, Text, TextInput, View} from 'react-native';
const smallImage = {
uri: 'https://www.facebook.com/favicon.ico',
};
export default function App() {
const email =
'From [email protected] From [email protected]';
return (
<View style={styles.container}>
<View style={styles.flexBrokenStyle}>
<Text style={styles.parentText} numberOfLines={1}>
<Text>{email}</Text>
<Image source={smallImage} style={{height: 50, width: 50}} />
</Text>
</View>
</View>
);
}
const styles = StyleSheet.create({
container: {
flex: 1,
justifyContent: 'center',
padding: 8,
backgroundColor: 'yellow',
},
flexBrokenStyle: {
flexDirection: 'row',
},
parentText: {
backgroundColor: 'red',
},
});
Fabric
Before | After |
---|---|
Paper
Before | After |
---|---|
Text with images wraps on the second line
CLICK TO OPEN SOURCECODE
Relevant commit 00c318cb742 and https://gist.github.com/assets/24992535/65240c44-ba57-4d66-8dd2-e168aeb98da2
import * as React from 'react';
import {Button, Image, StyleSheet, Text, TextInput, View} from 'react-native';
const smallImage = {
uri: 'https://www.facebook.com/favicon.ico',
};
export default function App() {
const email =
'From [email protected] ddddddddd dddd dd dd dd dd d';
return (
<View style={styles.container}>
<View style={styles.flexBrokenStyle}>
<Text style={styles.parentText}>
<Text>{email}</Text>
<Image source={smallImage} style={{height: 50, width: 50}} />
</Text>
</View>
</View>
);
}
const styles = StyleSheet.create({
container: {
flex: 1,
justifyContent: 'center',
padding: 8,
backgroundColor: 'yellow',
},
flexBrokenStyle: {
flexDirection: 'row',
},
parentText: {
backgroundColor: 'red',
},
});
Fabric:
Before | After |
---|---|
Paper:
Before | After |
---|---|
Text includes emoji (not boring text)
CLICK TO OPEN TESTS RESULTS
import * as React from 'react';
import {Button, Image, StyleSheet, Text, TextInput, View} from 'react-native';
const smallImage = {
uri: 'https://www.facebook.com/favicon.ico',
};
export default function App() {
const email = 'From vinesdfsd 👍 😊 🐚 😆';
const email2 =
'مرحبا بالعالم من فابريزيومرحبا بالعالم من فابريزيو مرحبا مرحبامن فابريزيو مرحبا مرحبا';
return (
<View style={styles.container}>
<View style={styles.flexBrokenStyle}>
<Text numberOfLines={1}>
<Text style={styles.parentText}>{email}</Text>
</Text>
</View>
</View>
);
}
const styles = StyleSheet.create({
container: {
flex: 1,
justifyContent: 'center',
padding: 8,
},
flexBrokenStyle: {
// direction: 'rtl',
flexDirection: 'row',
},
parentText: {
backgroundColor: 'red',
fontSize: 30,
},
});
After |
---|
Veryfing the result of the onLayout callback
CLICK TO OPEN SOURCECODE
import * as React from 'react';
import {Button, Image, StyleSheet, Text, TextInput, View} from 'react-native';
const smallImage = {
uri: 'https://www.facebook.com/favicon.ico',
};
export default function App() {
const email =
'From [email protected] From [email protected]';
const onLayoutCallback = e => {
const {width, height, x, y} = e.nativeEvent.layout;
console.warn(
'w: ' +
parseInt(width) +
' h:' +
parseInt(height) +
' x: ' +
parseInt(x) +
' y: ' +
parseInt(y),
);
};
return (
<View style={styles.container}>
<View style={styles.flexBrokenStyle}>
<Text
onLayout={onLayoutCallback}
style={styles.parentText}
numberOfLines={1}>
<Text>{email}</Text>
<Image source={smallImage} style={{height: 50, width: 50}} />
</Text>
</View>
</View>
);
}
const styles = StyleSheet.create({
container: {
flex: 1,
justifyContent: 'center',
padding: 8,
backgroundColor: 'yellow',
},
flexBrokenStyle: {
flexDirection: 'row',
},
parentText: {
backgroundColor: 'red',
},
});
Before (Fabric) | After (Fabric) |
---|---|
Before (Paper) | After (Paper) |
---|---|
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Text width is larger than parent
Text width is higher of parent (YogaMeasureMode.EXACTLY)
CLICK TO OPEN SOURCECODE
Paper