Skip to content

Are you a recent graduate / a fresher looking for job? Complete this task and Submit for a chance to get hired by Fantacode

License

Notifications You must be signed in to change notification settings

fantacode/OpenHiring

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Open Hiring

Are you a recent graduate / a fresher looking for a job? Complete this task and Submit for a chance to get hired by Fantacode

Goal

To develop a two-page Xamarin.Forms Application which evaluates your ability To

  • Solve Problems
  • Read the documentation and develop a solution
  • When stuck, the ability to find answers from Google.
  • Knowledge to use Git and GitHub.

The steps might be overwhelming as a beginner, but the idea is to search and find answers.

A good to follow documentation is Microsoft's official guide. https://docs.microsoft.com/en-us/xamarin/get-started/

If you have no prior C# knowledge, start here https://channel9.msdn.com/Series/CSharp-101

A quick intro to Xamarin Forms https://channel9.msdn.com/Series/Xamarin-101

What you should Do

  1. Install Git Tooling and Fork this Project https://help.github.com/en/github/getting-started-with-github/fork-a-repo
  2. Install Xamarin Tooling https://docs.microsoft.com/en-us/xamarin/get-started/installation/
  3. Fork and Clone the repo to your Computer https://help.github.com/en/github/getting-started-with-github/fork-a-repo
  4. In Submission Folder, create a new Xamarin Forms Solution. https://docs.microsoft.com/en-us/xamarin/get-started/first-App

We are building an App to display List of Todo Items using HTTP GET and Insert Todo Items using HTTP POST, Follow the below section to find out the API details

  1. Change the Contents of MainPage.xaml to support the following
  1. Add New ContentPage AddTodo.xaml to Add new Todo Items to the List
  1. In MainPage.xaml add a button to Navigate to AddTodo.xaml https://docs.microsoft.com/en-us/xamarin/xamarin-forms/app-fundamentals/navigation/
  2. After completing the process, test your app, once you are happy with the result, commit your code, and push the code to your repo. https://www.earthdatascience.org/workshops/intro-version-control-git/basic-git-commands/

It's completely normal to encounter multiple issues while attempting this challenge, there is a high chance that the problem you are looking for has an existing solution on the web. Try to find a solution from sources like Stack Overflow or Google, if you are unable to find the solution even after searching, you can contact us to get help. Feel free to open an issue in this repo.

API Docs

You can refer Swagger to Test the API from Browser https://fctodo.azurewebsites.net/swagger/index.html

GET

Url https://fctodo.azurewebsites.net/todo Returns List of Todo Items

 [
   {
     "id": 1,
     "name": "Hello, Drink Water"
   }
 ]

POST

Url https://fctodo.azurewebsites.net/todo Request Body Content-Type should be "application/json" Request Body to Send

 {
   "name": "My To-do Task"
 }

Todo Object

 public class Todo
 {
     public int id { get; set; }
     public string name { get; set; }
 }

Sample Screenshots

Home Add Todo Item Succes Add Todo Item Error
Home Screen of the App Indicating adding Todo Item was Succcess Indicating Errors in Input

Submission

Once you have completed the steps, please share the link of your fork [email protected]

Note Feel free to design the User Interface in any way you like. Experiment and try fancy stuff, you'll get more points for good looking UI's. Feel free to find inspiration from the below links or platforms like Dribble.

https://github.com/jsuarezruiz/xamarin-forms-goodlooking-UI

About

Are you a recent graduate / a fresher looking for job? Complete this task and Submit for a chance to get hired by Fantacode

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published