Universitas Kebudayaan Digital Makassar

Universitas Kebudayaan Digital Makassar (UKDMKS) memadukan inovasi teknologi digital dengan pelestarian budaya lokal. Bergabunglah untuk membangun masa depan berbasis budaya dan teknologi!

dart flutter

Belajar Widget ListView di Flutter

ListView

Pada Codelab kedua kita telah menggunakan dan menyinggung sedikit tentang widget ListView. Widget ini digunakan untuk menampilkan beberapa item dalam bentuk baris atau kolom dan bisa di-scroll.

Cara penggunaan ListView ini mirip dengan Column atau Row di mana Anda memasukkan widget yang ingin disusun sebagai children dari ListView.
  1. class ScrollingScreen extends StatelessWidget {
  2.  
  3.   @override
  4.   Widget build(BuildContext context) {
  5.     return Scaffold(
  6.       body: ListView(
  7.         children: <Widget>[
  8.           Container(
  9.             height: 250,
  10.             decoration: BoxDecoration(
  11.               color: Colors.grey,
  12.               border: Border.all(color: Colors.black),
  13.             ),
  14.             child: Center(
  15.               child: Text(
  16.                 ‘1’,
  17.                 style: TextStyle(fontSize: 50),
  18.               ),
  19.             ),
  20.           ),
  21.           Container(
  22.             height: 250,
  23.             decoration: BoxDecoration(
  24.               color: Colors.grey,
  25.               border: Border.all(color: Colors.black),
  26.             ),
  27.             child: Center(
  28.               child: Text(
  29.                 ‘2’,
  30.                 style: TextStyle(fontSize: 50),
  31.               ),
  32.             ),
  33.           ),
  34.           Container(
  35.             height: 250,
  36.             decoration: BoxDecoration(
  37.               color: Colors.grey,
  38.               border: Border.all(color: Colors.black),
  39.             ),
  40.             child: Center(
  41.               child: Text(
  42.                 ‘3’,
  43.                 style: TextStyle(fontSize: 50),
  44.               ),
  45.             ),
  46.           ),
  47.           Container(
  48.             height: 250,
  49.             decoration: BoxDecoration(
  50.               color: Colors.grey,
  51.               border: Border.all(color: Colors.black),
  52.             ),
  53.             child: Center(
  54.               child: Text(
  55.                 ‘4’,
  56.                 style: TextStyle(fontSize: 50),
  57.               ),
  58.             ),
  59.           ),
  60.         ],
  61.       ),
  62.     );
  63.   }
  64. }
Ketika dijalankan, aplikasi akan menjadi seperti berikut:

2020061516591432c07a92f5d35999c40850627353c105.gif

Menampilkan Item Secara Dinamis

Selain memasukkan widget satu per satu ke dalam children dari ListView, Anda juga dapat menampilkan list secara dinamis. Ini sangat berguna ketika Anda memiliki banyak item dengan jumlah yang tidak menentu.
Misalnya kita ingin menampilkan daftar angka dari 1 sampai 10.


  1. List<int> numberList = <int>[1, 2, 3, 4, 5, 6, 7, 8, 9, 10];




Caranya, masukkan variabel atau list Anda sebagai children lalu panggil fungsi map(). Fungsi map ini berguna untuk memetakan atau mengubah setiap item di dalam list menjadi objek yang kita inginkan. Fungsi map ini membutuhkan satu buah parameter berupa fungsi atau lambda.


  1. class ScrollingScreen extends StatelessWidget {

  2.   final List<int> numberList = <int>[1, 2, 3, 4, 5, 6, 7, 8, 9, 10];

  3.  

  4.   @override

  5.   Widget build(BuildContext context) {

  6.     return Scaffold(

  7.       body: ListView(

  8.         children: numberList.map((number) {});

  9.       ),

  10.     );

  11.   }

  12. }




Karena parameter children ini membutuhkan nilai berupa list widget, maka kita perlu mengembalikan setiap item dari numberList menjadi widget yang akan ditampilkan. Ubah fungsi lambda Anda menjadi seperti berikut:
  1. class ScrollingScreen extends StatelessWidget {
  2.   final List<int> numberList = <int>[1, 2, 3, 4, 5, 6, 7, 8, 9, 10];
  3.  
  4.   @override
  5.   Widget build(BuildContext context) {
  6.     return Scaffold(
  7.       body: ListView(
  8.         children: numberList.map((number) {
  9.           return Container(
  10.             height: 250,
  11.             decoration: BoxDecoration(
  12.               color: Colors.grey,
  13.               border: Border.all(color: Colors.black),
  14.             ),
  15.             child: Center(
  16.               child: Text(
  17.                 ‘$number’, // Ditampilkan sesuai item
  18.                 style: TextStyle(fontSize: 50),
  19.               ),
  20.             ),
  21.           );
  22.         }).toList(),
  23.       ),
  24.     );
  25.   }
  26. }
Perhatikan di akhir kita perlu mengembalikan fungsi map menjadi objek List lagi dengan fungsi .toList(). Lakukan hot reload pada aplikasi Anda untuk melihat hasil perubahan.

Menggunakan List.generate

Cara ini mirip dengan seperti sebelumnya, hanya saja ini langsung menggunakan sebuah List
Caranya, isi children dengan List.generate lalu isi parameter pertama dengan panjang dari list yang Anda miliki. 
Lalu isi parameter kedua dengan fungsi berparameter int yang me-return sebuah widget yang Anda inginkan seperti berikut:
  1. ListView(
  2.   children: List<Widget>.generate(
  3.     numberList.length,
  4.     (int index) {
  5.       return Container(
  6.         height: 250,
  7.         decoration: BoxDecoration(
  8.           color: Colors.grey,
  9.           border: Border.all(color: Colors.black),
  10.         ),
  11.         child: Center(
  12.           child: Text(
  13.             ‘${numberList[index]},
  14.             style: TextStyle(fontSize: 50),
  15.           ),
  16.         ),
  17.       );
  18.     },
  19.   ),
  20. )
202006151658498bfa70741171d34742ef6961d26c75ab.gif
Untuk mempelajari fitur ListView selengkapnya dapat Anda baca pada tautan dokumentasi ListView Class.
Asalas | Unlock Anime, Manhwa & Donghua Like Never BeforeFinasteriden: Unlock the Secrets of the Movie World!Marians Woman: Celebrating Beauty Around the WorldArheon - Unveiling the Secrets of Food & Origins WorldwideMPAPER The Ultimate Destination for Anime & Manga FansANMC21: Your Guide to Smarter Living and SuccessMV Agusta of Tampa: Your Automotive News HubTech and Play: Your Hub for Technology, Gaming, and GadgetsRebeccaSommer : Stories & Cultures from Around the WorldUETRABAJANDOJUNTOS - Inside the Music World’s Best-Kept SecretsVandelay Armor - Viral News and Global UpdatesGainesville Sun: Technology & Computers UnveiledGRFX Gaming Party Bus: Journey Through Gaming ErasHouse of Beauty: Celebrating the World's Most Beautiful WomenLearn Mistake: Wisdom for a Better LifeSports Hope Alive: Portal Olahraga DuniaWorld News TW - The Hottest Viral News & Global HeadlinesWriter Sujatha - Life Lessons & Struggles That Inspirehttps://128.199.185.186/https://143.198.89.74/https://165.227.47.178/https://170.64.208.214/LVONLINEtelegram lvonlinehttps://www.lvoslot.com/https://www.lvobet.id/https://www.lvoslot.id/https://www.lvonline000.com/https://www.lvonline001.com/https://www.lvonline002.com/https://www.lvonline003.com/https://www.lvonline004.com/https://www.lvonline005.com/https://www.lvonline006.com/https://www.lvonline007.com/https://www.lvonline008.com/https://www.lvonline009.com/https://www.lvonline010.com/https://www.lvonlinepoker.com/https://www.lvonlinebola.com/https://www.lvonlinekasino.com/situs bandar lvonlinehttps://www.situslvonline.us/SbobetSaba SportsUbobethttps://www.aievea-bijou.com/Lucky Nekohttps://146.190.97.83/https://143.198.209.134/https://188.166.246.204/https://167.172.83.179/https://www.togelhok.id/https://earthtoweb.com/https://128.199.71.129/https://167.172.64.185/Scatter Hitamhttps://www.capcut88.com/https://www.capcut88.co/https://towsonsmiles.com/https://www.campur88.com/https://www.campur88.org/https://www.campur88.work/https://www.campur88.xyz/https://www.campur88.lol/https://www.nagacampur.biz/https://www.nagacampur.club/https://www.nagacampur.co/https://www.nagacampur.me/https://www.nagacampur.xyz/https://www.nasicampur88.com/https://165.232.175.185/https://152.42.164.228/https://152.42.194.203/https://152.42.169.214/https://www.campurslot.com/https://www.campurslot.id/https://www.campurslot.co/https://www.campurslot.org/https://www.campurslot.homes/https://www.campurslot.design/Badan Lembaga Pendidikan Ilmu Komputer SubangUniversitas Negeri JeparaLembaga Universitas Kristen MaranthaSMP 3 Negri Nganjukhttps://iklanmalay.com/https://promobola.comhttps://kapsychologists.comhttps://propertycloudsite.comSattar777 NewsVR Slot Online NewsRuby888 Online Slot NewsBerita Global Klik Agenslot228Agen Sloto SG777 NewsGold Club SlotOnline NewsAzar Marra Kech NewsBerita Sidney dan MancanegaraBerita Seputar Sumsel dan DuniaBerita Rehabilitasi Judi OnlineBerita Link Gacor TerupdateItalian Tuition News UpdateWPJS Online NewsBerita Agen Slot RoyalThai Slot Online NewsAll Online Game NewsOnline Game News UpdateAsian Lotre NewsBerita Demo Dana SlotBerita Kalbar ProvLocanda della Maria NewsWye Valley NewsBerita Agen Slot1004Berita Agen Slot33Agen Slot399 NewsPlayboy Slot Online NewsSlot Online BB Slot NewsSlot Online 911 News365 Slot Online NewsEat Atlah Newsambamali canadaInfo Seputar Sepakbolacentre thoughtBerita Hiburanopen etherpadras indo groupresistance manualPrediksi Shiowe want real newsthe poisoned pawnindonesia reclaimed teakswift kennedy and copullip passionmy passion foraim torontoPublic FlashesFriweb TeknologiIngenious Gamersthe late show gardensGishPuppy Newsslot danaOregon Farm Garden NewsViral Pulse GlobalPromo Bola soccer Captivates The WorldKapsychologists World First The Science of Mental Health - Understanding Psychiatry: The Science of Mental HealthPropertyCloudSite How to Make Smarter Investments in Today’s MarketArnavichara Ultimate Guide Right Business SoftwareAuscare Disability A Comprehensive Guide to Retirement Homes Finding the Perfect Place to Enjoy Your Golden YearsSeries Mp4 The Future of Entertainment Streaming and Downloadable Video ExplainedAlogirlxinh How to Create a Successful Personal Page or Blog in 2024ihokibet
UPT Puskesmas Tanjung SelorLembaga Universitas Kristen MaranthaBadan Lembaga Pendidikan Ilmu Komputer SubangFKIP Universitas Negeri JeparaFakultas Akademika Fasilkom SubangSTIE & STMIK JayakartaFakultas Teknologi Industri JayabayaFakultas Ekonomi Syariah UnislaProdi Akuntansi Univesitas Islam Lamongan