Skip to content

Instantly share code, notes, and snippets.

@rollygarg
rollygarg / App.js
Created October 20, 2025 10:05
PIA14 RN Uppgift 2
import React, { useState } from 'react';
import { View, Text, TextInput, TouchableOpacity, FlatList, StyleSheet } from 'react-native';
export default function App() {
const [text, setText] = useState('');
const [items, setItems] = useState([]);
// Add item to the list
const addItem = () => {
if (text.trim() !== '') {