Сообщество IT-специалистов
Ответы на любые вопросы об IT
Профессиональное развитие в IT
Удаленная работа для IT-специалистов
const items = Array.from({length:20},(v,k)=>k+1);
<FlatList style={{ backgroundColor: background, marginBottom: 60 }} > ... </FlatList>
<Appbar style={styles.bottom} onLayout={(event) => { const {height} = event.nativeEvent.layout; // пробросить этот height в margin }}> ... </Appbar>
const styles = StyleSheet.create({ container: { flex: 1, }, bottom: { position: 'absolute', // <-- удалите эту строку left: 0, right: 0, bottom: 0, }, });