borntofrappe / flutter-dev

Flutter applications following the guidance of flutter.dev

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

flutter-dev

Learn Flutter by creating Flutter apps

A few remarks to preface the repository:

  • the different folders include the .dart files located in the lib directory of an hypothetical Flutter project. You can test the output on dartpad.dev, but for those scripts which rely on static assets, for those scripts which rely on additional dependencies you need to setup a project

  • remember to add a trailing comma to Flutter widget ,. The formatting setup with the Flutter and Dart extensions heavily relies on this comma to indent nested objects

    Icon(
        Icons.add,
    -    size: 64.0
    +    size: 64.0,
    )

startup_name_generator

Follow the codelabs on flutter.dev to create "your first Flutter app".

building_layouts

Follow the tutorial on flutter.dev with a focus on layout widgets.

adding_interactivity

Follow the tutorial on flutter.dev with a focus on interactivity.

friendly_chat

Follow a codelab from google developers with a focus on beautiful UI.

counter

Create a counter application after the image illustrating the development kit on flutter.dev/learn.

hive

Follow a Youtube tutorial with a focus on local data storage through the hive library.

About

Flutter applications following the guidance of flutter.dev


Languages

Language:Dart 100.0%