Copy and Paste  -   An Application to Copy/Paste Text  

 
S.No 5969 Name new Date/Time 01-Jul-2024 12:48:17 PM

Copy text from below
/*
Question C15:
Show a list of students, such that :
ID Name CGPA
1 Javed 3.0
2 Noman 2.7
3 Ali 3.7
4 Faisal 3.3
5 Shahid 4.0
6 Kamal 3.1
7 Zahid 2.3
The students whose CGPA are in the range between 2 and less than 3 should be shown in bold and
red font.
The students whose CGPA are in the range between 3 and less than 3.7 should be shown in blue font
without bold
The students whose CGPA are greater than and equal to 3.7 should be shown in italic, bold, and
green font

*/

import 'package:flutter/material.dart';

class Student {
  final int id;
  final String name;
  final double gpa;

  Student(this.id, this.name, this.gpa);
}

void main() {
  runApp(MaterialApp(
      title: 'Flutter Demo',
      theme: ThemeData(
        colorScheme: ColorScheme.fromSeed(seedColor: Colors.deepPurple),
        useMaterial3: true,
      ),
      home: MyApp()));
}

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

  final List<Student> students = [
    Student(1, "Javed", 3.0),
    Student(2, "Noman", 2.7),
    Student(3, "Ali", 3.7),
    Student(4, "Faisal", 3.3),
    Student(5, "Shahid", 4.0),
    Student(6, "Kamal", 3.1),
    Student(7, "Zahid", 2.3)
  ];

  TextStyle? _getTextStyle(double gpa) {
    FontWeight fw = FontWeight.normal;
    FontStyle fs = FontStyle.normal;
    Color color = Colors.black;

    if (gpa >= 2 && gpa < 3) {
      color = Colors.red;
      fw = FontWeight.bold;
      fs = FontStyle.normal;
    } else if (gpa >= 3 && gpa < 3.7) {
      color = Colors.blue;
      fw = FontWeight.normal;
      fs = FontStyle.normal;
    } else if (gpa >= 3.7) {
      color = Colors.green;
      fw = FontWeight.normal;
      fs = FontStyle.italic;
    }
    return TextStyle(
      fontWeight: fw,
      fontStyle: fs,
      color: color,
    );
  }

  // This widget is the root of your application.
  @override
  Widget build(BuildContext context) {
    return Scaffold(
        body: ListView.builder(
// Let the ListView know how many items it needs to build.
            itemCount: students.length,
// Provide a builder function. This is where the magic happens.
// Convert each item into a widget based on the type of item it is.
            itemBuilder: (context, index) {
              final item = students[index];
              return ListTile(
                title: Row(
                    mainAxisAlignment: MainAxisAlignment.spaceBetween,
                    children: [
 




comments powered by Disqus
NEW ENTRIES
S.No Name Entry Time/Date
5787 ssss 22-Sep-2023 08:55:24 AM
5786 2 21-Sep-2023 10:40:17 AM
5785 fire wood 21-Sep-2023 10:34:52 AM
5784 calculator 21-Sep-2023 10:09:45 AM
5783 t1 21-Sep-2023 10:02:23 AM
5782 test 21-Sep-2023 09:39:22 AM
5781 design_new 21-Sep-2023 09:09:57 AM
5780 calc_design 21-Sep-2023 08:59:28 AM
5779 stepsis 19-Sep-2023 05:53:02 PM
5778 good 19-Sep-2023 05:51:44 PM
5777 Button 18-Sep-2023 02:31:47 PM
5776 Step1 18-Sep-2023 01:53:15 PM
5775 Hello 18-Sep-2023 01:50:17 PM
5774 123 18-Sep-2023 01:45:52 PM
5773 bijlee 18-Sep-2023 01:41:40 PM
5772 StepMom 18-Sep-2023 01:37:22 PM
5771 Fuc 18-Sep-2023 12:38:14 PM
5770 lab 18-Sep-2023 12:21:41 PM
5769 dani 18-Sep-2023 12:21:30 PM
5768 abc 18-Sep-2023 12:19:36 PM
5767 Only Boys 18-Sep-2023 12:15:25 PM
5766 test 1 16-Sep-2023 11:39:43 AM
5765 New Kiddo 16-Sep-2023 09:05:19 AM
5764 my Video 13-Sep-2023 10:14:44 AM
5763 NEW CHILD 07-Sep-2023 06:40:17 AM
5762 03-Sep-2023 10:57:01 AM
5761 Canine Lingu 02-Sep-2023 01:41:53 PM
5760 Fix Child 29-Aug-2023 06:40:56 AM
5759 27-Aug-2023 01:33:04 PM
5758 Anime 26-Aug-2023 02:35:13 PM

[First] [Prev] 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