Skip to content

Instantly share code, notes, and snippets.

@mohammedmunir
mohammedmunir / Flutter_Cheatsheet.md
Last active November 24, 2022 10:16 — forked from jb0gie/flutter.md
Flutter Cheatsheet

Flutter

A quick cheatsheet of useful snippet for Flutter

Widget

A widget is the basic type of controller in Flutter Material. There are two type of basic Widget we can extend our classes: StatefulWidget or StatelessWidget.

Stateful

StatefulWidget are all the widget that interally have a dynamic value that can change during usage. It can receive an input value in the constructor or reference to functions. You need to create two classes like:

@mohammedmunir
mohammedmunir / AdbCommands
Created October 19, 2022 10:12 — forked from Pulimet/AdbCommands
Adb useful commands list
adb help // List all comands
== Adb Server
adb kill-server
adb start-server
== Adb Reboot
adb reboot
adb reboot recovery
adb reboot-bootloader