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
// ignore: must_be_immutable
class HomePage extends StatefulWidget {
const HomePage({
super.key,
});
@override
State<HomePage> createState() => _HomePageState();
}
# 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"
@Abhishek12345679
Abhishek12345679 / DaysOfTheWeek.js
Last active January 17, 2022 14:56
daysofTheWeek
const DaysOfTheWeek = [
"Sunday",
"Monday",
"Tuesday",
"Wednesday",
"Thursday",
"Friday",
"Saturday",
];
git remote add origin https://github.com/Abhishek12345679/TipCollector.git
git branch -M main
git push -u origin main

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:

'use strict';
const {
ArrayIsArray,
ArrayPrototypeIncludes,
ArrayPrototypeJoin,
ArrayPrototypeMap,
NumberIsInteger,
NumberMAX_SAFE_INTEGER,
NumberMIN_SAFE_INTEGER,
import React, { useState } from "react";
import NavigationContainer from "./navigation/NavigationContainer";
export default function App() {
return (<NavigationContainer />);
}
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 from "react";
import { View, TouchableOpacity, Text, Dimensions } from "react-native";
import {
Ionicons,
AntDesign,
MaterialCommunityIcons,
} from "@expo/vector-icons";
import MoviesScreen from "../screens/MoviesScreen";