restore repo

This commit is contained in:
PanSi21 2024-11-19 02:04:30 +01:00
parent 97e8ee6eb8
commit f2a798ab18
Signed by untrusted user who does not match committer: PanSi21
GPG key ID: 755F8874C65EF462
30 changed files with 1627 additions and 2 deletions

30
app/(tabs)/index.tsx Normal file
View file

@ -0,0 +1,30 @@
import React from 'react';
import { FlatList, StyleSheet, Text } from 'react-native';
import { View } from '@/components/Themed';
import TransactionItem from '@/components/transaction/TransactionItem';
export default function TabOneScreen() {
return (
<View style={styles.container}>
<Text style={styles.testo}>Lista Transazioni</Text>
<FlatList
data={[{ key: 'transactions' }]}
renderItem={() => <TransactionItem />}
keyExtractor={item => item.key}
/>
</View>
);
}
const styles = StyleSheet.create({
container: {
flex: 1
},
testo: {
color: '#fff',
fontSize: 20,
fontWeight: 'bold',
textAlign: 'center',
paddingVertical: 10,
}
});