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'; | |
| void main() { | |
| runApp( | |
| MaterialApp( | |
| debugShowCheckedModeBanner: false, | |
| home: Scaffold( | |
| backgroundColor: Colors.blue, | |
| body: ListView( | |
| children: [ |
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'; | |
| void main() { | |
| // Bir array olusturdum ic ice bir array yani her bir yuva icinde bi array barindiriyor. | |
| // Siralar, ve kolomlari temsil ediyor. | |
| final List<List<int>> sonuc = [ | |
| [4, 3, 6, 7, 8, 9, 1, 2, 5], | |
| [5, 9, 7, 1, 2, 3, 4, 6, 8], | |
| [1, 8, 2, 6, 4, 5, 9, 7, 3], | |
| [2, 7, 9, 4, 5, 1, 3, 8, 6], |