miyakei1225 / ReactNative-Hands-on-Firestore

5 stars 1 forks source link

React Nativeのあれこれ #9

Open miyakei1225 opened 1 year ago

miyakei1225 commented 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/