Copy and Paste  -   An Application to Copy/Paste Text  

 
S.No 5967 Name quiz Date/Time 28-Jun-2024 08:10:48 PM

Copy text from below
import 'package:flutter/material.dart';

class Person {
  List<Map<String, dynamic>> people = [
    {"name": "Ali", "height": 33},
    {"name": "Faisal", "height": 54},
    {"name": "Jawad", "height": 50},
  ];
}

void main() {
  runApp(MaterialApp(
    home: MyApp(),
  ));
}

class MyApp extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    var p = Person();

    return Scaffold(
        body: ListView.builder(
            itemCount: p.people.length,
            itemBuilder: (context, index) {
              return Text(
                  "${p.people[index]["name"]}  ${p.people[index]["height"]}  ${p.people[index]["height"] >= 54 ? "pass" : "fail"}");
            }));
  }
}




comments powered by Disqus
NEW ENTRIES
S.No Name Entry Time/Date
5694 MET May 3 03-May-2023 11:15:13 AM
5693 Asfand Leaks 02-May-2023 09:18:28 AM
5692 bikmangiya 02-May-2023 09:17:04 AM
5691 kk 30-Apr-2023 12:11:31 AM
5690 Yasir 29-Apr-2023 01:32:17 AM
5689 lll 27-Apr-2023 08:39:14 PM
5688 Gg 27-Apr-2023 08:31:28 PM
5687 More 4 You 27-Apr-2023 12:55:44 PM
5686 Elif Yener 26-Apr-2023 03:51:34 PM
5685 cycling 26-Apr-2023 01:26:18 PM
5684 Muslim matri 23-Apr-2023 11:13:13 AM
5683 xxxxx 18-Apr-2023 08:57:31 AM
5682 Aa 16-Apr-2023 10:23:04 PM
5681 Apr 12 MET 12-Apr-2023 09:56:35 AM
5680 MET 12 Apr 12-Apr-2023 09:43:37 AM
5679 online 11-Apr-2023 01:16:47 PM
5678 MS Test 11-Apr-2023 12:59:16 PM
5677 asdf 11-Apr-2023 12:58:53 PM
5676 asdf 11-Apr-2023 12:58:38 PM
5675 asdf 11-Apr-2023 12:58:33 PM
5674 asdf 11-Apr-2023 12:58:27 PM
5673 asdf 11-Apr-2023 12:58:20 PM
5672 asdf 11-Apr-2023 12:58:14 PM
5671 asdf 11-Apr-2023 12:58:07 PM
5670 asdf 11-Apr-2023 12:57:59 PM
5669 asdf 11-Apr-2023 12:57:53 PM
5668 asdf 11-Apr-2023 12:57:45 PM
5667 asdf 11-Apr-2023 12:57:38 PM
5666 asdf 11-Apr-2023 12:57:30 PM
5665 asdf 11-Apr-2023 12:57:22 PM

[First] [Prev] 11 | 12 [Next] [Last]
 
web counter
web counter


To report any error messages or bugs, or other issues, please send email at: info@pakproject.com