berkeresvan / flutter

1 stars 0 forks source link

Text_Button_TextField #10

Open berkeresvan opened 6 months ago

berkeresvan commented 6 months ago

import 'package:flutter/material.dart';

void main() { runApp(const MyApp()); }

class MyApp extends StatelessWidget { const MyApp({super.key});

@override Widget build(BuildContext context) { return MaterialApp( title: 'Flutter Demo', theme: ThemeData( colorScheme: ColorScheme.fromSeed(seedColor: Colors.deepPurple), useMaterial3: true, ), home: const MyHomePage(title: 'Flutter Demo Home Page'), ); } }

class MyHomePage extends StatefulWidget { const MyHomePage({super.key, required this.title});

final String title;

@override State createState() => _MyHomePageState(); }

class _MyHomePageState extends State { var tfController = TextEditingController(); String alinanVeri = ""; @override Widget build(BuildContext context) { return Scaffold( appBar: AppBar( backgroundColor: Theme.of(context).colorScheme.inversePrimary, title: Text(widget.title), ), body: Center( child: Column( mainAxisAlignment: MainAxisAlignment.center, children: [ TextField( controller: tfController, decoration: InputDecoration( hintText: "yazınız", ), ), ElevatedButton( onPressed: () { setState(() { alinanVeri = tfController.text; }); }, child: Text("Veriyi Al")), Text("Gelen Veri : $alinanVeri") ], ), ), ); } }