Open miyakei1225 opened 1 year ago
ScrollViewはheightを設定できません。なので、高さを調節したい場合は、Viewコンポーネントで囲み、Viewコンポーネントに対して、高さを設定します。
import React from 'react'; import { View, ScrollView } from 'react-native'; export default function TabThreeScreen() { return ( - <View> + <View style={{height: 80}} > <ScrollView horizontal={true}> </ScrollView> </View> ) }
https://blog.jurabi.jp/implementing-horizontal-scroll-bar-using-scroll-view/
https://blog.jurabi.jp/implementing-horizontal-scroll-bar-using-scroll-view/