Skip to content

Instantly share code, notes, and snippets.

View Abhishek12345679's full-sized avatar
🦉
Learning Flutter

Abhishek Sah Abhishek12345679

🦉
Learning Flutter
View GitHub Profile
const MyTabBar = ({ state, descriptors, navigation }) => {
return (
<View
style={{
position: "absolute",
bottom: Dimensions.get("window").width / 20,
flexDirection: "row",
justifyContent: "center",
alignItems: "center",
height: 65,
import React from "react";
import { View, TouchableOpacity, Text, Dimensions } from "react-native";
import {
Ionicons,
AntDesign,
MaterialCommunityIcons,
} from "@expo/vector-icons";
import MoviesScreen from "../screens/MoviesScreen";
import React from "react";
import { NavigationContainer } from "@react-navigation/native";
import { AppNavigator,MainStackNavigator } from "../navigation/AppNavigator";
const AppContainer = (props) => {
return (
<NavigationContainer>
<AppNavigator />
</NavigationContainer>
import React, { useState } from "react";
import NavigationContainer from "./navigation/NavigationContainer";
export default function App() {
return (<NavigationContainer />);
}
'use strict';
const {
ArrayIsArray,
ArrayPrototypeIncludes,
ArrayPrototypeJoin,
ArrayPrototypeMap,
NumberIsInteger,
NumberMAX_SAFE_INTEGER,
NumberMIN_SAFE_INTEGER,

Keybase proof

I hereby claim:

  • I am abhishek12345679 on github.
  • I am voldy (https://keybase.io/voldy) on keybase.
  • I have a public key ASAIHBomN1WkhW3cX_9bHDuRKr5FGe1LipecCUO9XLFyJgo

To claim this, I am signing this object:

git remote add origin https://github.com/Abhishek12345679/TipCollector.git
git branch -M main
git push -u origin main
@Abhishek12345679
Abhishek12345679 / DaysOfTheWeek.js
Last active January 17, 2022 14:56
daysofTheWeek
const DaysOfTheWeek = [
"Sunday",
"Monday",
"Tuesday",
"Wednesday",
"Thursday",
"Friday",
"Saturday",
];
# create a new branch
git checkout -b new_clean_branch
# apply all changes
git merge original_messy_branch
# forget the commits but have the changes staged for commit
git reset --soft main
git commit -m "Squashed changes from original_messy_branch"