Copy and Paste  -   An Application to Copy/Paste Text  

 
S.No 5966 Name gesture Date/Time 28-Jun-2024 07:56:05 PM

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

class Person {
  final String? name;
  final int? height;

  Person({this.name, this.height});
}

void main() {
  runApp(
    MyApp(items: [
      Person(name: 'Ali', height: 33),
      Person(name: 'Faisal', height: 54),
      Person(name: 'Javed', height: 50),
    ]),
  );
}

class MyApp extends StatelessWidget {
  final List<Person> items;

  MyApp({super.key, required this.items});

  @override
  Widget build(BuildContext context) {
    const title = 'Long List';

    return MaterialApp(
      title: title,
      home: Scaffold(
        appBar: AppBar(
          title: const Text(title),
        ),
        body: ListView.builder(
          itemCount: items.length,
          prototypeItem: ListTile(
            title: Text("${items.first.name}"),
          ),
          itemBuilder: (context, index) {
            return GestureDetector(
              onTap: () {
                Navigator.of(context).push(MaterialPageRoute(
                    builder: (context) => DetailScreen(
                        name: items[index].name!,
                        height: items[index].height!)));
              },
            );
          },
        ),
      ),
    );
  }
}

class DetailScreen extends StatelessWidget {
  final String name;
  final int height;

  const DetailScreen({super.key, required this.name, required this.height});
  @override
  Widget build(BuildContext context) {
    return Text("${name} ${height}");
  }
}




comments powered by Disqus
NEW ENTRIES
S.No Name Entry Time/Date
5968 360 Modular 29-Jun-2024 03:16:17 PM
5967 quiz 28-Jun-2024 08:10:48 PM
5966 gesture 28-Jun-2024 07:56:05 PM
5965 Garden Distr 28-Jun-2024 09:34:32 AM
5964 Child Sexy 27-Jun-2024 10:29:38 AM
5963 error 24-Jun-2024 04:48:13 PM
5962 senddata 24-Jun-2024 02:17:52 PM
5961 phpflutter 23-Jun-2024 10:43:04 AM
5960 Tiki Grip & 22-Jun-2024 03:11:17 PM
5959 KID HOT 21-Jun-2024 11:42:36 AM
5958 conn 13-Jun-2024 01:28:50 PM
5957 main.dart 13-Jun-2024 01:26:55 PM
5956 firebase_op 13-Jun-2024 01:26:23 PM
5955 Blu Atlantic 12-Jun-2024 02:05:39 PM
5954 Bro Love Sis 12-Jun-2024 10:54:46 AM
5953 addmaxexport 07-Jun-2024 05:09:49 PM
5952 geopharmarx 07-Jun-2024 05:06:11 PM
5951 readymedicin 07-Jun-2024 05:05:43 PM
5950 bimatoprost 07-Jun-2024 05:04:48 PM
5949 genericlatis 07-Jun-2024 05:03:55 PM
5948 tapentadol 07-Jun-2024 05:02:57 PM
5947 tapentadol 07-Jun-2024 04:58:42 PM
5946 buytapentado 07-Jun-2024 04:56:36 PM
5945 buytapentado 07-Jun-2024 03:49:54 PM
5944 abc 05-Jun-2024 11:08:02 AM
5943 btn disable 03-Jun-2024 02:39:37 PM
5942 mad 03-Jun-2024 01:59:22 PM
5941 AgencyTowing 29-May-2024 11:52:10 PM
5940 Sexy Kids 22-May-2024 07:44:19 AM
5939 pubspec.yaml 20-May-2024 03:02:28 PM

1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 [Next] [Last]
 
web counter
web counter


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