Content depending on the available device size

Content depending on the available device size

A multitude of different screen sizes exist across phones, tablets, desktops, TVs, and even wearables. Screen sizes are always changing, so it's important that your app can adapt to any screen size, today or in the future. In addition, devices have different features with which we interact with them. For example some of your visitors will be using a touchscreen others will be using keyboard and mouse. Modern responsive design considers all of these things to optimize the experience for everyone

Exercise :

Try to make something like that where :

UCL Clubs 2019-20 file : Download

  • Width < 500 :

  • 500 < Width < 700

  • Width > 700 with GridView crossAxisCount: width ~/ 300,










Solution :

import 'package:flutter/material.dart';

import './cl2019.dart';

 

void main() {

  runApp(const MyApp());

}

 

class MyApp extends StatelessWidget {

  const MyApp({Keykey}) : super(keykey);

 

  @override

  Widget build(BuildContext context) {

    return const MaterialApp(

      title"UCL Clubs 2019-20",

      homeMyHomePage(),

    );

  }

}

 

class MyHomePage extends StatefulWidget {

  const MyHomePage({Keykey}) : super(keykey);

 

  @override

  _MyHomePageState createState() => _MyHomePageState();

}

 

class _MyHomePageState extends State<MyHomePage> {

  @override

  Widget build(BuildContext context) {

    var width = MediaQuery.of(context).size.width;

    return Scaffold(

      appBarAppBar(

        titleconst Text("UCL Clubs 2019-20"),

        backgroundColorconst Color.fromRGBO(60602301),

      ),

      bodywidth > 700

          ? GridView.count(

              crossAxisCountwidth ~/ 300,

              childrenList.generate(uclClubs2019_20.length, (index) {

                return Card(

                  marginconst EdgeInsets.all(8),

                  childColumn(

                    mainAxisAlignmentMainAxisAlignment.spaceAround,

                    children: [

                      Container(

                        decorationBoxDecoration(

                            borderRadiusBorderRadius.circular(25),

                            color:

                                Colors.accents[index % Colors.accents.length]),

                        widthdouble.maxFinite,

                        paddingEdgeInsets.all(width * 0.01),

                        childText(

                          uclClubs2019_20[index]['code'].toString(),

                          textAlignTextAlign.center,

                          styleconst TextStyle(

                              colorColors.whitefontSize35),

                        ),

                      ),

                      const Divider(),

                      Text(

                        uclClubs2019_20[index]['name'].toString(),

                        styleconst TextStyle(

                            fontSize25fontWeightFontWeight.bold),

                      ),

                      const Divider(),

                      Text(

                        uclClubs2019_20[index]['country'].toString(),

                        styleconst TextStyle(

                            fontSize20,

                            fontWeightFontWeight.bold,

                            colorColors.lightBlue),

                      ),

                      const Divider(),

                      GestureDetector(

                        childRow(

                          mainAxisAlignmentMainAxisAlignment.center,

                          children: [

                            Text(

                              "Favorite",

                              styleTextStyle(

                                  fontSize20,

                                  fontWeightFontWeight.bold,

                                  color:

                                      uclClubs2019_20[index]['favorite'] == true

                                          ? Colors.pink

                                          : Colors.grey),

                            ),

                            uclClubs2019_20[index]['favorite'] == true

                                ? const Icon(

                                    Icons.favorite,

                                    colorColors.pink,

                                  )

                                : const Icon(

                                    Icons.favorite_border_outlined,

                                    colorColors.grey,

                                  )

                          ],

                        ),

                        onTap: () {

                          setState(() {

                            uclClubs2019_20[index]['favorite'] =

                                uclClubs2019_20[index]['favorite'] == true

                                    ? false

                                    : true;

                          });

                        },

                      )

                    ],

                  ),

                );

              }),

            )

          : ListView.builder(

              itemCountuclClubs2019_20.length,

              itemBuilder: (ctxindex) {

                return Card(

                  childListTile(

                    leadingContainer(

                      paddingconst EdgeInsets.all(8),

                      decorationBoxDecoration(

                          borderRadiusBorderRadius.circular(10),

                          colorColors.accents[index % Colors.accents.length]),

                      childText(

                        uclClubs2019_20[index]['code'].toString(),

                        textAlignTextAlign.center,

                        style:

                            const TextStyle(colorColors.whitefontSize25),

                      ),

                    ),

                    titleText(

                      uclClubs2019_20[index]['name'].toString(),

                      styleconst TextStyle(

                          fontSize20fontWeightFontWeight.bold),

                    ),

                    subtitleText(

                      uclClubs2019_20[index]['country'].toString(),

                      styleconst TextStyle(

                          fontSize15,

                          fontWeightFontWeight.bold,

                          colorColors.lightBlue),

                    ),

                    trailingGestureDetector(

                      childFittedBox(

                        childRow(

                          mainAxisAlignmentMainAxisAlignment.center,

                          children: [

                            width > 500

                                ? Text(

                                    "Favorite",

                                    styleTextStyle(

                                        fontSize20,

                                        fontWeightFontWeight.bold,

                                        coloruclClubs2019_20[index]

                                                    ['favorite'] ==

                                                true

                                            ? Colors.pink

                                            : Colors.grey),

                                  )

                                : Container(),

                            uclClubs2019_20[index]['favorite'] == true

                                ? const Icon(

                                    Icons.favorite,

                                    colorColors.pink,

                                  )

                                : const Icon(

                                    Icons.favorite_border_outlined,

                                    colorColors.grey,

                                  )

                          ],

                        ),

                      ),

                      onTap: () {

                        setState(() {

                          uclClubs2019_20[index]['favorite'] =

                              uclClubs2019_20[index]['favorite'] == true

                                  ? false

                                  : true;

                        });

                      },

                    ),

                  ),

                );

              },

            ),

    );

  }

}