berkeresvan / flutter

1 stars 0 forks source link

ListView.builder #28

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: 'DİNAMİK LİSTE'), ); } }

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

final String title;

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

class _MyHomePageState extends State { var ulkeler = ["türkiye", "almanya", "çin", "amerika", "hollanda", "fransa"]; @override Widget build(BuildContext context) { return Scaffold( appBar: AppBar( backgroundColor: Theme.of(context).colorScheme.inversePrimary, title: Text(widget.title), ), body: ListView.builder( itemCount: ulkeler.length, itemBuilder: (context, indexs) { return Card( child: Padding( padding: const EdgeInsets.all(8.0), child: SizedBox( height: 50, child: Row( children: [ Text(ulkeler[indexs]), ], ), ), ), ); }, ), ); } }

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: 'DİNAMİK LİSTE'), ); } }

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

final String title;

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

class _MyHomePageState extends State { var ulkeler = ["türkiye", "almanya", "çin", "amerika", "hollanda", "fransa"]; @override Widget build(BuildContext context) { return Scaffold( appBar: AppBar( backgroundColor: Theme.of(context).colorScheme.inversePrimary, title: Text(widget.title), ), body: ListView.builder( itemCount: ulkeler.length, itemBuilder: (context, indexs) { return GestureDetector( onTap: () { print("${ulkeler[indexs]} seçildi"); }, child: Card( child: Padding( padding: const EdgeInsets.all(8.0), child: SizedBox( height: 50, child: Row( children: [ GestureDetector( onTap: () { print("text ile ${ulkeler[indexs]} seçildi"); }, child: Text(ulkeler[indexs])), ], ), ), ), ), ); }, ), ); } }