Rendering Speed
See original GitHub issueHi,
I’m having ton of fun using this sweet library. However, I’m just wondering if there’s any way to bring up the performance.
At the moment, the rendering speed of the component is pretty slow and the associated input components which shares the state gets affected resulting in typing lag.
Please see the code below as an example
const SelectSales = pure(
({ newBooking, setNewBooking, salesReps, ...props }) => {
return (
<View style={{ display: "flex", flexDirection: "row", zIndex: 3 }}>
<Text
style={{
padding: 5,
paddingRight: 0,
marginLeft: 15,
fontWeight: "500",
fontSize: 18,
letterSpacing: 2,
}}
>
By{" "}
</Text>
<DropDownPicker
showArrow={false}
zIndex={500}
defaultValue={newBooking.calId}
placeholder="..."
items={salesReps}
style={{ borderWidth: 0, backgroundColor: "rgba(52, 52, 52, alpha)" }}
containerStyle={{ width: 150 }}
itemStyle={{
justifyContent: "flex-start",
}}
labelStyle={{
fontWeight: "500",
fontSize: 18,
letterSpacing: 2,
}}
onChangeItem={e => {
setNewBooking({ ...newBooking, calId: e.value });
}}
/>
</View>
);
}
);
<Input
placeholder="Quote for ..."
value={newBooking.summary}
inputStyle={{ fontWeight: 500, color: "#31546A" }}
onChangeText={e => {
setNewBooking({ ...newBooking, summary: e });
}}
/>
Any suggestions, please let me know.
Thanks!
Issue Analytics
- State:
- Created 3 years ago
- Reactions:2
- Comments:10 (1 by maintainers)
Top Results From Across the Web
What can you do to increase Video Rendering speed?
There are a great variety of methods you can use to reduce render times for media. The first and most obvious way is...
Read more >14 Tips for Faster Rendering in After Effects - PremiumBeat
Let's speed up your render times—and workflow—in After Effects with these handy settings and hardware tips. · 1. Enable Multi-Frame Rendering · 2....
Read more >12 Tips To Speed Up Your Rendering - Renderro
1. Check running processes on the computer ... Make sure no other programs are running in the background. The computer must not be...
Read more >7 Tips for Faster 3D Rendering | IEEE Computer Society
Upgrade your RAM. First, consider upgrading your RAM. Your PC's random access memory is a fast type of memory that serves to temporarily...
Read more >What is Rendering? How to Accelerate the Rendering Speed?
Just like Fox Renderfarm, it provides massive render nodes, allowing you to get your 1-month project rendered as fast as in 5 min....
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found

Segue o link do drive, nele esta o arquivo que fiz as modificações https://drive.google.com/file/d/1kCj94DnWdLk0jiNfhAFg2KYfo420EDBI/view?usp=sharing
Em qui., 10 de dez. de 2020 às 14:01, Lennyk notifications@github.com escreveu:
Hello,
FlatListwas the best way to boost the performance but using the package insideScrollViewswas not ideal withFlatListand the annoying warnings. However, There’s another way to handle the items withScrollViewbut these days i’m very busy and can’t update the package. I’ll let you know if there’s any change.Thanks.