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
/*Bu kodda, "DropdownButtonWidget" adında ayrı bir Dart dosyasında tanımlanan | |
bir "DropdownButton" widget'ı bulunmaktadır. Bu widget, bir değer seçildiğinde | |
ana dosyadaki bir callback fonksiyonunu çağırarak seçilen değeri iletmektedir. | |
Bu sayede ana dosyadaki "Text" widget'ı, seçilen değeri gösterebilir.*/ | |
### main.dart: | |
import 'package:flutter/material.dart'; | |
import 'dropdown_widget.dart'; // DropdownButton widget'ını içeren dosyayı import ediyoruz. |