Skip to content

nature1995/Flutter-beautiful-app

Repository files navigation

Flutter-awesome-app

Open Source Love Open Source Love Open Source Love

This repo is the process of learning flutter by myself.

If you appreciate the content 📖, support projects visibility, give 👍| ⭐| 👏

Made by Flutter.svg

Flutter allows you to build beautiful native apps on iOS and Android from a single codebase.

Introduction

Flutter is a multi platform, open source, and free framework for creating mobile applications, created by Google. It is very easy to learn and currently it is getting more and more popular. With this blogpost you will learn some basic stuff about Flutter, and after reading it, you will be able to create a simple application using this technology.

Flutter Widget采用现代响应式框架构建,这是从 React 中获得的灵感,中心思想是用widget构建你的UI。 Widget描述了他们的视图在给定其当前配置和状态时应该看起来像什么。当widget的状态发生变化时,widget会重新构建UI,Flutter会对比前后变化的不同, 以确定底层渲染树从一个状态转换到下一个状态所需的最小更改。

Cross-platform comparison

Cross-platform

Install

Please select the operating system where you want to install Flutter:

Getting Start

Hello World

One of the simplest Flutter apps, just a widget! As an example below: Pass a widget to the runApp function:

import 'package:flutter/material.dart';

void main() {
  runApp(
    new Center(
      child: new Text(
        'Hello, world!',
        textDirection: TextDirection.ltr,
      ),
    ),
  );
}

references

About

Flutter beautiful app tutorial project | Author: Ziran Gong

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published