/** * Sample React Native App * https://github.com/facebook/react-native * * @format * @flow strict-local */ import React from 'react'; import { SafeAreaView, StyleSheet, TouchableOpacity, View, Text, AccessibilityInfo, } from 'react-native'; const App = () => { return ( <> RNAggregateViews Title Nothing else matter! Artist Metallica Genre Metal Year 1991 ); }; const styles = StyleSheet.create({ body: { flex: 1, paddingHorizontal: 10, }, group: { padding: 10, }, header: { backgroundColor: '#008577', paddingHorizontal: 20, paddingVertical: 20, }, headerText: { color: 'white', }, }); export default App;