Incorrect `flexGrow` behavior inside `<ScrollView contentContainerStyle={{ flexGrow: 1 }}>`
Aperta
Nessuno ha ancora preso questa issue.
Component: ScrollView
Issue: Author Provided Repro
Needs: Triage :mag:
Newer Patch Available
- Lingua principale
- C++
- Stelle
- 127k
- Fork
- 25.3k
- Merge medio
- 1g 23h
- PR unite (30g)
- 4
Descrizione
Description
Android (incorrect):
Note different heights.
Web (correct):
React Native Version
0.72.5
Output of npx react-native info
> npx react-native info
info Fetching system and libraries information...
System:
OS: Windows 10 10.0.22621
CPU: "(12) x64 AMD Ryzen 5 5600 6-Core Processor "
Memory: 18.43 GB / 31.91 GB
Binaries:
Node:
version: 20.2.0
path: C:\Program Files\nodejs\node.EXE
Yarn: Not Found
npm:
version: 9.7.2
path: C:\Program Files\nodejs\npm.CMD
Watchman: Not Found
SDKs:
Android SDK: Not Found
Windows SDK: Not Found
IDEs:
Android Studio: Not Found
Visual Studio:
- 17.5.33424.131 (Visual Studio Community 2022)
Languages:
Java:
version: 11.0.20.1
path: C:\Program Files\Eclipse Adoptium\jdk-11.0.20.101-hotspot\bin\javac.EXE
Ruby: Not Found
npmPackages:
"@react-native-community/cli": Not Found
react:
installed: 18.2.0
wanted: 18.2.0
react-native:
installed: 0.72.5
wanted: 0.72.5
react-native-windows: Not Found
npmGlobalPackages:
"*react-native*": Not Found
Android:
hermesEnabled: true
newArchEnabled: true
iOS:
hermesEnabled: Not found
newArchEnabled: Not found
Steps to reproduce
import { Text, View, ScrollView } from 'react-native';
export default function App() {
return (
<>
<View style={{ position: 'absolute', left: 20, height: 150 }}>
<View style={{ flexGrow: 1 }}>
<View style={{ width: 300, flexGrow: 1 }}>
{[['foo', 'bar'],['baz','A very long but very very long sentence']].map((row, index) => (
<View style={{ flexDirection: 'row', backgroundColor: index === 0 ? 'red' : 'blue', flexBasis: 0, flexGrow: 1 }} key={index}>
{row.map((answer) => (
<Text key={answer} style={{ flexBasis: 0, fontSize: 16, flexGrow: 1 }}>{answer}</Text>
))}
</View>
))}
</View>
</View>
</View>
<View style={{ height: 150 }}>
<ScrollView contentContainerStyle={{ flexGrow: 1 }}>
<View style={{ width: 300, flexGrow: 1 }}>
{[['foo', 'bar'],['baz','A very long but very very long sentence']].map((row, index) => (
<View style={{ flexDirection: 'row', backgroundColor: index === 0 ? 'purple' : 'orange', flexBasis: 0, flexGrow: 1 }} key={index}>
{row.map((answer) => (
<Text key={answer} style={{ flexBasis: 0, fontSize: 16, flexGrow: 1 }}>{answer}</Text>
))}
</View>
))}
</View>
</ScrollView>
</View>
</>
);
}
Use an Android device.
Snack, screenshot, or link to a repository
Guida per i contributori
Apri la guida per i contributori
Come iniziare
- Leggi tutta la issue e poi la guida ai contributi del progetto.
- Commenta sulla issue per dire che te ne occupi tu — evita che due persone facciano lo stesso lavoro.
- Fai un fork del repository e lavora su un branch.
- Apri una pull request che faccia riferimento al numero della issue.
Direzione di ricerca
Inizia con l’Expo Snack collegato e la riproduzione fornita su un dispositivo Android, confrontando il relativo layout flexGrow con il risultato web mostrato nel report. Traccia il comportamento di ScrollView e contentContainerStyle coinvolto; il lavoro è completato quando il layout Android gestisce flexGrow in modo coerente con il risultato atteso e la riproduzione non mostra più altezze differenti.
Scritto dal modello di indicizzazione a partire dal testo della issue.
Valutazione
- Stack tecnologico
- android, react-native
- Ambito
- mobile
- Tipo di issue
- Bug
- Difficoltà
- 3/5
- Tempo stimato
- 1-2 giorni
- Stato di attività
- Ferma
- Chiarezza
- Abbastanza chiara
- Idoneità per principianti
- 35/100