Center(child: Text()....)
Tuesday, September 5, 2023
Subscribe to:
Comments (Atom)
Ekran genişliğini ve yüksekliğini alma
double screenWidth = MediaQuery.of(context).size.width; double screenHeight = MediaQuery.of(context).size.height; Container( height: sc...
-
double screenWidth = MediaQuery.of(context).size.width; double screenHeight = MediaQuery.of(context).size.height; Container( height: sc...
-
stateless vs stateful class farkı nedir? setState fonksiyonu kullanımı button tipleri nelerdir?
-
Before: void main () { runApp( AnaEkran () , ) ; } After: void main () { runApp( MaterialApp ( home: AnaEkran () , ) , ) ; ...