Skip to content

Instantly share code, notes, and snippets.

View Taofiqq's full-sized avatar
🎯
Focusing

Taofiq Aiyelabegan Taofiqq

🎯
Focusing
View GitHub Profile
module.exports = {
project: {
ios: {},
android: {},
},
assets: ['./assets/fonts']
};
import {View, Text, StyleSheet} from 'react-native';
import React from 'react';
const App = () => {
return (
<View style={styles.container}>
<Text style={styles.text}>App</Text>
<Text style={styles.containerText}>App</Text>
</View>
);
@Taofiqq
Taofiqq / Screens.js
Last active May 20, 2022 20:03
Screens
// Settings Screen
import { StyleSheet, Text, View } from "react-native";
import React from "react";
import { createStackNavigator } from "@react-navigation/stack";
const Stack = createStackNavigator();
const Settings = () => (
<View style={styles.container}>
<Text>Settings</Text>
@Taofiqq
Taofiqq / Footer.js
Last active August 2, 2022 02:59
Navbar and Footer Component
@Taofiqq
Taofiqq / NavbarHook.css
Created February 5, 2024 09:37
This is a CSS file for the NavbarHook.js code, where the link to this gist was attached.
.header {
position: fixed;
width: 100%;
top: 0;
left: 0;
background-color: transparent;
z-index: var(--z-fixed);
}
.nav {