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(MyApp()); | |
class MyApp extends StatelessWidget { | |
@override | |
Widget build(BuildContext context) { | |
return MaterialApp( | |
title: "İlkel Blog Uygulaması", | |
home: Cati(), |
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
baglantiAl() async { | |
try { | |
String baglanti = await FirebaseStorage.instance | |
.ref() | |
.child("profilresimleri") | |
.child(auth.currentUser.uid) | |
.child("profilResmi.png") | |
.getDownloadURL(); | |
setState(() { |
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(MyApp()); // Uygulamanın başlangıç noktası. | |
class MyApp extends StatelessWidget { | |
@override | |
Widget build(BuildContext context) { | |
// MaterialApp, material tasarım kütüphanesini uygulama genelinde kullanılabilir yapar. | |
return MaterialApp( | |
home: GirisEkrani(), // GirişEkrani widget'ını ana ekran olarak ayarlar. |
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(MyApp()); | |
} | |
class MyApp extends StatelessWidget { | |
@override | |
Widget build(BuildContext context) { | |
return MaterialApp( |
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'; | |
import 'package:modbus/modbus.dart'; | |
void main() { | |
runApp(MyApp()); // Starting point of the application | |
} | |
class MyApp extends StatelessWidget { | |
@override | |
Widget build(BuildContext context) { |
NewerOlder