This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class ProductView extends ProductViewModel { | |
@override | |
Widget build(BuildContext context) { | |
return Scaffold( | |
key: scaffoldKey, | |
appBar: AppBar( | |
title: Text("Product List"), | |
), | |
floatingActionButton: FloatingActionButton( | |
onPressed: () { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// If Expression | |
// 1 Example------------------------------------ | |
var hiz: Int = 90 | |
var hizSiniri: Int = 120 | |
if (hiz > hizSiniri) { | |
print('Hız sınırını geçtiniz') |