Skip to content

Instantly share code, notes, and snippets.

View fatihemree's full-sized avatar

Fatih E. Kalem fatihemree

  • MDP Group
  • İstanbul
View GitHub Profile
// If Expression
// 1 Example------------------------------------
var hiz: Int = 90
var hizSiniri: Int = 120
if (hiz > hizSiniri) {
print('Hız sınırını geçtiniz')
@fatihemree
fatihemree / readme.md
Last active June 19, 2020 12:30 — forked from benstr/readme.md
Gist Markdown Cheatsheet

Heading 1

Heading 2

Heading 3

Heading 4

Heading 5
class ProductView extends ProductViewModel {
@override
Widget build(BuildContext context) {
return Scaffold(
key: scaffoldKey,
appBar: AppBar(
title: Text("Product List"),
),
floatingActionButton: FloatingActionButton(
onPressed: () {