[[oktatas:telefon:react_native|< React Native]] ====== Példák ====== * **Szerző:** Sallai András * Copyright (c) Sallai András, 2021, 2023 * Licenc: [[https://creativecommons.org/licenses/by-sa/4.0/|CC Attribution-Share Alike 4.0 International]] * Web: https://szit.hu ===== Számláló növelő ===== A példában osztályokat használunk: import React, { Component} from 'react'; import { View, StyleSheet, Button, Text } from 'react-native'; export default class App extends Component { constructor() { super(); this.state = { counter: 0 } } increment = () => { this.setState({ counter: this.state.counter + 1 }); } render() { return ( Számláló: {this.state.counter}