Coder Social home page Coder Social logo

darkang3lz92 / hacktoberfest-2020-flutter-beginner Goto Github PK

View Code? Open in Web Editor NEW

This project forked from atharva-vijay-khade/hacktoberfest-2020-flutter-beginner

0.0 0.0 0.0 56 KB

Hacktoberfest 2020 participation

License: The Unlicense

Swift 17.62% Objective-C 1.66% Dart 80.72%

hacktoberfest-2020-flutter-beginner's Introduction

🎃 Welcome to HACKTOBERFEST 2020 !

👻

If you're looking for your first PR then look no further!

The following are steps in order to successfully submit your first PR:

  • Click the Fork button on the upper right-hand corner. This will save the repo to your GitHub account.
  • Clone the repo locally by running the git clone command in your terminal.
  • Now create a branch using the git checkout command.
  • Make changes to the project and save it, then execute git status , and you’ll see the changes.
  • Add those changes to the branch you just created using the git add command.
  • Now commit those changes using the git commit command.
  • In order to push the changes to GitHub, we need to identify the remote’s name. Use the git remote command.
  • After identifying the remote’s name (i.e: origin) we can safely push those changes to GitHub. Use the git push command.
  • Go to your repository on GitHub and you’ll see a button “Compare & pull request” and click it.
  • Before submitting any pull requests to the original repository you have to sync your repository to the original one.
  • First, check which branch you are in. Use the git branch command.
  • Switch to the master branch. Use the git checkout master command.
  • Add the original repository as an upstream repository. Use the git remote add upstream [HTTPS] command.
  • Fetch the repository. Use the git fetch upstream command.
  • Merge it. Use the git merge upstream/master command.
  • Push changes to GitHub. Use the git push origin master command.
  • Delete the unnecessary branch. Use the git branch -d [Branch Name] command. You can delete the version of it on GitHub, too.git push origin --delete [Branch Name]

Congratulations! 🎉 You've made your first pull request. If your pull request is accepted you’ll receive an email. Don't worry I got you ;)

The purpose of this app is to add your favorite TV show into the list in the flutter app. I already added mine so just use it as a template to add yours.

The following code snippet is included in the source code, just copy it and make another listTile & edit it to your desire.

ListTile(                            
  leading: Icon(Icons.bubble_chart), 
  title: Text("Lucifer"),            
  subtitle: Text("Netflix"),         
  trailing: Icon(Icons.bubble_chart),
),                                    

Unlicense

The Unlicense

License: Unlicense

hacktoberfest-2020-flutter-beginner's People

Contributors

ahmadtakkoush avatar atharva-vijay-khade avatar hutomosaktikartiko avatar mayankparida avatar moyinshabi avatar nishikalkote avatar vixipop avatar

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.