This document provides a cheat sheet on basics of building mobile applications with Flutter. It includes information on installing Flutter and Android Studio, creating a basic 'Hello World' app, and using icons. The document is a single page cheat sheet with code examples and explanations of core Flutter concepts.
This document provides a cheat sheet on basics of building mobile applications with Flutter. It includes information on installing Flutter and Android Studio, creating a basic 'Hello World' app, and using icons. The document is a single page cheat sheet with code examples and explanations of core Flutter concepts.
Install Android https://flutter.dev/docs/get-started/editor?tab=‐ Studio androidstudio void main() => runApp(MyApp());
Test drive https://flutter.dev/docs/get-started/test-drive?tab‐
=androidstudio class MyApp extends StatelessWidget { // This widget is the root of your application. Android Studio is just a suggestion! You can use your preferred @override editor. Widget build(BuildContext context) { return MaterialApp( General information title: 'Flutter Icon Tutorial', Flutter is a Open Source Development-Kit from Google. It is used to theme: ThemeData( create apps for Android, iOS, Windows, macOS, Linux, Google primarySwatch: Colors.blue, Fuchsia and the Web. ), Flutter applications are written in Dart and use many functions of this home: MyHomePage(), language. ); Source: https://en.wikipedia.org/wiki/Flutter_(software) } } Hello World
import 'package:flutter/material.dart'; class MyHomePage extends StatefulWidget {