Skip to content

Instantly share code, notes, and snippets.

@hayanisaid
Created March 20, 2021 01:46
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hayanisaid/5276d8f2961cecce11c80fbca632781c to your computer and use it in GitHub Desktop.
Save hayanisaid/5276d8f2961cecce11c80fbca632781c to your computer and use it in GitHub Desktop.
import { DefaultTheme, Provider as PaperProvider } from 'react-native-paper';
import Home from '/home'
const theme = {
colors: {
primary: '#90eee1',
accent: '#6356e5',
},
fonts:{
regular:16,
small:12,
},
typography:{
title:'Roboto',
paragraph:'Open Sans'
}
};
export default function App() {
return (
<PaperProvider theme={theme}>
<Home/>
</PaperProvider>
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment