Flutter ARTICLE

History of Flutter

flutter image
Designed by:Google

Flutter is an open-source UI software development kit created by Google. It is used to develop cross platform applications for Android, iOS, Linux, macOS, Windows, Google Fuchsia, and the web from a single codebase. First described in 2015, Flutter was released in May 2017.

Flutter Introduction

What is Flutter?

What kinds of apps can I build with Flutter?

Navigation and routing

Deep linking

Flutter - Writing Android Specific Code

         
           import 'package:flutter/material.dart';
           void main() => runApp(MyApp());
           class MyApp extends StatelessWidget {
           @override
           Widget build(BuildContext context) {
           return MaterialApp(
           title: 'Flutter Demo',
           theme: ThemeData(
            primarySwatch: Colors.blue,
           ),
            home: MyHomePage(title: 'Flutter Demo Home Page'),
          );
          }
          }
         class MyHomePage extends StatelessWidget {
         MyHomePage({Key key, this.title}) : super(key: key);
         final String title;

         @override
         Widget build(BuildContext context) {
         return Scaffold(
         appBar: AppBar(
            title: Text(this.title),
          ),
           body: Center(
            child: RaisedButton(
               child: Text('Open Browser'),
               onPressed: null,
            ),
           ),
         );
        }
        }