Skip to content

Latest commit

 

History

History
157 lines (72 loc) · 5.41 KB

README.md

File metadata and controls

157 lines (72 loc) · 5.41 KB

CSoC Week-1 Flutter

Introduction

Flutter - promises cross platform, natively compiled apps, with slick smooth UIs. Developed by Google, the framework is gaining in popularity, especially amongst new startups.

Single Codebase…like Java?

Flutter’s major selling point is that it allows developers to create mobile apps for Android and iOS using a single codebase. It’s possible to build a Flutter app targeting Android and build the same project on a Mac for iOS devices without changing a single line of code.

Unlike most other mobile app frameworks Flutter does not use WebView nor OEM widgets. Instead, Flutter uses its own rendering engine to draw widgets.

Apps are natively compiled too, so you’ll need a machine with Android SDK installed for targetting Android and you’ll need to be running XCode to build for iOS devices.

Getting Started

Installation

Here is how you can install Flutter. Do not install Android Studio right now, this week you do not require it. Read until writing your first flutter app.

Install

To use flutter consistently between different terminal sessions, go through this

Linux install

Install a suitable IDE. VS Code (compared to Android Studio) is good choice for a light and better experience.

For Basic Understanding

Don't forget to switch on USB Debugging on your mobile. (In case you are not using an emulator)

For reference, keep this handy

Flutter - Dart API docs

Challenge

As an aspiring developer, you'd need to keep building things to keep your knowledge on tips. Now that you are good to go with the basics of native Android Development, we want you to build one of the apps from the following list on your own.

  1. Calculator app
  2. Hangman game

Note : You have to choose one of them.

The task that we'll be working over is to build a HANGMAN game, It is a simple word guessing game. The player tries to figure out an unknown word by guessing letters. If too many letters which do not appear in the word are guessed, the player is hanged (and loses).

Tasks

  • Task 1: Implement a hangman game. Create a word generator and generate random words in every game.

  • Task 2: Add a high score page to view the previous scores.

  • Task 3: Giving hints to users, by showing a few letters when the user needs them. Also, you could give signs when the entered letters are wrong.

  • Task 4: Make hard and easy mode with say, 5 lives in easy and 3 in hard mode. Also, word length and difficulty could be changed with respective levels. Easy words could have till 5 letters while difficult ones with longer words.

  • Extras: Adding a timer for making it more interactive and competitive.

The objective is that you need to build a Calculator which will perform at least our basic mathematical operations.

Tasks

  • Task 1: Create a simple calculator with basic mathematical operations.

  • Task 2: Add complex operations including exponentiation, logarithms, trigonometry, etc.

  • Task 3: Add an option to change settings, say from radians to degrees and vice versa, and an option to change the theme of the app.

  • Task 4: Feature to show a history of previous calculations.

  • Extras: Add feature for matrix calculations and plotting of simple basic graphs using equations.

You have to provide your Repo and APK File as part of submission

Points

Here is the breakdown of the points related to each task

Task Points
Task 1 30
Task 2 30
Task 3 30
Task 4 30
Bonus 20
Total 140

Judging

The evaluation would be done mainly on the following basis:

  1. User Interface and User Experience
  2. Authenticity and readability of the code
  3. Completion of mentioned tasks
  4. Bonus Points for implementing extra features depending on your creativity😉

Remember, the deadline for this week's task is June 18th, 2023, 23:59.

Submission Guidelines :

Submission has to be done by sharing your github repo link and the .apk file of your application

  • Fork and then Clone your repository
  • Make a new entry into submissions (Link of your repositor and .apk of the app) as in the comments
  • Commit and Push the changes
  • Make a Pull request

Submissions