Git Product home page Git Product logo

lost-pet-spotter's Introduction

Hi, Iโ€™m Shamsur Raza Chowdhury

Activities on Github:


GitHub Streak

Techologies I use:

JavaScript C++ Python golang HTML Node.js TypeScript React Native MongoDB PostgreSQL Next.js GraphQL Docker Git GitHub Visual Studio Code Windows Material UI Bootstrap Tailwind CSS Vercel AWS AWS Lambda Firebase

lost-pet-spotter's People

Contributors

shamsch avatar

Watchers

 avatar

lost-pet-spotter's Issues

Add user profile view

A profile view where users can edit, delete and view only their posts. This can potentially hold a log out option too.

Write unit test for the components

Hi,

At this moment, the components are not tested. Please implement test for some or all of the component in ./src/__test__ directory. Preferably use only Jest and React Native Testing Library or if you have know something better. Add testId as you deem necessary. You are free to refactor any side effect the component does into a separate component and only test the pure component so as to make unit testing easier. Consider the following example:

const PureComponent = (props) => {
    return <div>{props.something}</div>;
}

const ComponentWithSideEffect = (props) => {
    const [something, setSomething] = useState('');
    useEffect(() => {
        fetch('something').then(res => res.json()).then(data => setSomething(data.something));
    }, []);
    return <PureComponent something={something} />;
}

You are of course free to do it however you like as long as you don't break anything lol.

Thanks in advance.

MapScreen causes crash in build, needs debugging

The <Map/> component is causing crash in build. Likely another good old one of those "only appears in production but not in Expo Go" issue thanks to react-native-navigation. Debug and fix with Expo developer build version.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.