This file contains hidden or 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
    
  
  
    
  | ... | |
| Container( | |
| // Genişlik | |
| width: 200, | |
| // Yükseklik | |
| height: 300, | |
| // Renk | |
| color: Colors.red, | 
  
    
      This file contains hidden or 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
    
  
  
    
  | import 'package:flutter/material.dart'; | |
| // Container() | |
| void main() { | |
| runApp( | |
| MaterialApp( | |
| title: 'Material App', | |
| home: Scaffold( | |
| appBar: AppBar(title: Text('AppBar')), | 
  
    
      This file contains hidden or 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
    
  
  
    
  | ... | |
| decoration: BoxDecoration( | |
| // Buradaki color parametresini kullanıyorsak, | |
| // Container widgetındaki color parametresini iptal etmeliyiz. | |
| color: Colors.amber, | |
| // Containerımızın şeklini oval yaptık. | |
| shape: BoxShape.circle, | |
| // Containerımıza sınır çiziyoruz. | 
  
    
      This file contains hidden or 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
    
  
  
    
  | import 'package:flutter/material.dart'; | |
| // Container() | |
| void main() { | |
| runApp( | |
| MaterialApp( | |
| title: 'Material App', | |
| home: Scaffold( | |
| appBar: AppBar(title: Text('AppBar')), | 
  
    
      This file contains hidden or 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
    
  
  
    
  | ... | |
| Column( | |
| // Yukarıdan-Aşağıya Hizalama | |
| mainAxisAlignment: MainAxisAlignment.center, | |
| // Sağdan-Sola Hizalama | |
| crossAxisAlignment: CrossAxisAlignment.start, | |
| // Column içerisine eklenen diğer widgetların listesi | |
| children: <Widget>[ | |
| RaisedButton(child: Text("1"), onPressed: () {}), | 
  
    
      This file contains hidden or 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
    
  
  
    
  | import 'package:flutter/material.dart'; | |
| // Container() | |
| // Column() | |
| void main() { | |
| runApp( | |
| MaterialApp( | |
| title: 'Material App', | |
| home: Scaffold( | 
  
    
      This file contains hidden or 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
    
  
  
    
  | ... | |
| Row( | |
| // Sağdan-Sola Hizalama | |
| mainAxisAlignment: MainAxisAlignment.center, | |
| // Yukarıdan-Aşağıya Hizalama | |
| crossAxisAlignment: CrossAxisAlignment.start, | |
| // Row içerisine eklenen diğer widgetların listesi | |
| children: <Widget>[ | 
OlderNewer