ホームページ >ウェブフロントエンド >jsチュートリアル >Reactnative を使用してアプリにスタイルや CSS を追加するにはどうすればよいですか?

Reactnative を使用してアプリにスタイルや CSS を追加するにはどうすればよいですか?

PHPz
PHPz転載
2023-09-01 12:05:031161ブラウズ

次のようにアプリケーションのスタイルを設定できます -

  • スタイルシート コンポーネントの使用
  • インライン スタイルの使用

スタイルシート コンポーネントの使用

React ネイティブ スタイルシート コンポーネントは、アプリケーションにスタイルを適用する場合に非常に便利で簡潔です。スタイルシート コンポーネントを使用するには、まず以下に示すようにインポートします -

import { StyleSheet } from 'react-native';

以下に示すように、スタイルシート コンポーネントを使用してスタイルを作成できます -

const styles = StyleSheet.create({
   container: {
      flex: 1,
      marginTop: StatusBar.currentHeight || 0,
   },
   item: {
      margin: 10,
      padding: 20,
      marginVertical: 8,
      marginHorizontal: 16,
   }
});

上記のスタイルはコードで使用できます。以下は、-

<View style={styles.container}></View>

スタイル シートを使用して FlatList コンポーネントを表示する例です-

例 1

import React from "react";
import { FlatList , Text, View, StyleSheet, StatusBar } from "react-native";
export default class App extends React.Component {
   constructor() {
      super();
      this.state = {
         data: [
            { name: "Javascript Frameworks", isTitle: true },
            { name: "Angular", isTitle: false },
            { name: "ReactJS", isTitle: false },
            { name: "VueJS", isTitle: false },
            { name: "ReactNative", isTitle: false },
            { name: "PHP Frameworks", isTitle: true },
            { name: "Laravel", isTitle: false },
            { name: "CodeIgniter", isTitle: false },
            { name: "CakePHP", isTitle: false },
            { name: "Symfony", isTitle: false }
         ],
         stickyHeaderIndices: []
      };
   }
   renderItem = ({ item }) => {
      return (
         <View style={styles.item}>
            <Text style={{ fontWeight: (item.isTitle) ? "bold" : "", color: (item.isTitle) ? "red" : "gray"}} >
               {item.name}
            </Text>
         </View>
      );
   };
   render() {
      return (
         <View style={styles.container}>
            <FlatList
               data={this.state.data}
               renderItem={this.renderItem}
               keyExtractor={item => item.name}
               stickyHeaderIndices={this.state.stickyHeaderIndices}
            />
         </View>
      );
   }
}
const styles = StyleSheet.create({
   container: {
      flex: 1,
      marginTop: StatusBar.currentHeight || 0,
   },
   item: {
      margin: 10,
      padding: 20,
      marginVertical: 8,
      marginHorizontal: 16,
   }
});

Output

Reactnative を使用してアプリにスタイルや CSS を追加するにはどうすればよいですか?

インライン スタイルの使用

style 属性を使用してインライン スタイルを追加できます。ただし、コードが読みにくくなる可能性があるため、これはベスト プラクティスではありません。これは、reactnative コンポーネントでインライン スタイルを使用する方法に関する実際の例です。

例 2

デフォルト アプリケーションをエクスポートします。

import React from &#39;react&#39;;
import { Button, View, Alert } from &#39;react-native&#39;;

const App = () => {
   return (
      <View style={{flex :1, justifyContent: &#39;center&#39;, margin: 15 }}>
         <Button
            title="Click Me"
            color="#9C27B0"
            onPress={() => Alert.alert(&#39;Testing Button for React Native &#39;)}
         />
      </View>
   );
}

出力

Reactnative を使用してアプリにスタイルや CSS を追加するにはどうすればよいですか?#

以上がReactnative を使用してアプリにスタイルや CSS を追加するにはどうすればよいですか?の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。

声明:
この記事はtutorialspoint.comで複製されています。侵害がある場合は、admin@php.cn までご連絡ください。