Closed1
React Nativeでfooterを実装する
position: 'absolute'
bottom: 0
の指定をしてScrollViewコンポーネントと同じ階層においてあげるだけ
<ScrollView />
<View
style={{
height: 42,
width: '100%',
position: 'absolute',
bottom: 0,
backgroundColor: 'red',
}}
>
<Text>footer</Text>
</View>
このスクラップは2023/02/15にクローズされました