草庐IT

android - Flutter-ListView 溢出

coder 2023-05-09 原文

Flutter Overflow widget picture

我想设计一个小部件的 ListView,每个小部件都有一个存储信息的容器。我尝试使用 ListView 但容器没有出现在屏幕上,所以我切换到 Row,它们出现但不能超过容器的最大宽度。你能建议如何管理图片中的 ListView 吗? 这是我的代码:

class NewsPage extends StatelessWidget {

@override
Widget build(BuildContext context) {

Widget buildButtonScore= Container(

  height: 100.0,
  width: 100.0,
  decoration: BoxDecoration(borderRadius: BorderRadius.circular(20.0),color: Colors.white),
  child: FlatButton(
    padding: EdgeInsets.only(top: 20.0),
    child: Column( // Replace with a Row for horizontal icon + text
      children: <Widget>[
        IconButton(
            icon: Icon(Icons.add_circle_outline,size: 30.0,color: Colors.blue),
            onPressed: () {
              Navigator.push(
                  context,
                  MaterialPageRoute(
                      builder: (context) => PointPage()
                  )
              );
            }
        ),
        Text("Đặt hàng",style: TextStyle(color: Colors.black),)
      ],
    ),
  ),
);
Widget buildButtonOrder= Container(
  height: 100.0,
  width: 100.0,
  decoration: BoxDecoration(borderRadius: BorderRadius.circular(20.0),color: Colors.white),
  child: FlatButton(
    padding: EdgeInsets.only(top: 20.0),
    child: Column( // Replace with a Row for horizontal icon + text
      children: <Widget>[
        IconButton(
            icon: Icon(Icons.shopping_cart,size: 30.0,color: Colors.blue),
            onPressed: () {
              Navigator.push(
                  context,
                  MaterialPageRoute(
                      builder: (context) => PointPage()
                  )
              );
            }
        ),
        Text("Đặt hàng",style: TextStyle(color: Colors.black),)
      ],
    ),
  ),
);
Widget buildButtonPurse = Container(
  height: 100.0,
  width: 100.0,
  decoration: BoxDecoration(borderRadius: BorderRadius.circular(20.0),color: Colors.white),
  child: FlatButton(
    padding: EdgeInsets.only(top: 20.0),
    child: Column( // Replace with a Row for horizontal icon + text
      children: <Widget>[
        IconButton(
            icon: Icon(Icons.monetization_on,size: 30.0,color: Colors.blue),
            onPressed: () {
              Navigator.push(
                  context,
                  MaterialPageRoute(
                      builder: (context) => PointPage()
                  )
              );
            }
        ),
        Text("Ví tiền",style: TextStyle(color: Colors.black),)
      ],
    ),
  ),
);
//Button Column
Widget buttonRow = Container(
  padding: const EdgeInsets.only(bottom: 10.0),
  margin: EdgeInsets.symmetric(vertical: 10.0),
  child: Row(
    mainAxisAlignment: MainAxisAlignment.spaceEvenly,
    children: [
      buildButtonScore,
      buildButtonOrder,
      buildButtonPurse,
    ],
  ),
);
//OFFERROW
Widget offer1 = Container(
  height: 150.0,
  width: 180.0,
  decoration: BoxDecoration(borderRadius: BorderRadius.circular(20.0),color: Colors.white30),
  child: FlatButton(

    padding: EdgeInsets.only(top: 0.0),

    child: Column( 

      children: <Widget>[

        new Image.asset('images/Q.png',height: 90.0,fit: BoxFit.fitWidth,width: 180.0,),

        Text("Các cô gái đẹp đang chờ bạn đó!!!",style: TextStyle(color: Colors.black),)
      ],
    ),
  ),
);
Widget offer2 = Container(
  height: 150.0,
  width: 180.0,
  decoration: BoxDecoration(borderRadius: BorderRadius.circular(20.0),color: Colors.white30),
  child: FlatButton(

    padding: EdgeInsets.only(top: 0.0),

    child: Column( // Replace with a Row for horizontal icon + text

      children: <Widget>[
        new Image.asset('images/Nina.gif',height: 90.0,fit:BoxFit.fitWidth,width: 180.0,),

        Text("Hãy nhanh tay sở hữu vé xem phim Goddess Kiss!",style: TextStyle(color: Colors.black),)
      ],
    ),
  ),
);
Widget offerRow = Row(
  //shrinkWrap: true,
  //scrollDirection: Axis.horizontal,
  mainAxisAlignment: MainAxisAlignment.spaceEvenly,
  children: <Widget>[
    Row(
      children: [
        offer1,
        VerticalDivider(),
        offer2,
      ],
    ),
  ],
);

Widget newsRow = Container(
  padding: EdgeInsets.only(top: 10.0),
  child: Container(
    color: Colors.transparent,
    margin: EdgeInsets.symmetric(vertical: 20.0),
    height: 125.0,
    child: ListView(
      scrollDirection: Axis.vertical,
      children: <Widget>[
        new NewsBody(),
      ],
    ),
  ),
);
// TODO: implement build
return Container(
  child: ListView(
    scrollDirection: Axis.vertical,
    children: <Widget>[
      buttonRow,

      new Text('Dành cho bạn',style: TextStyle( fontSize: 20.0, fontWeight: FontWeight.w400),),
      offerRow,

      new Text('Tin tức',style: TextStyle( fontSize: 20.0, fontWeight: FontWeight.w400),),
      newsRow,
    ],
  ),
);

}

}

我得到错误:

Pic1

Pic2

Pic3

Pic4

Pic5

最佳答案

在 SingleChildScrollView 中添加您的代码,使用 scrollDirection: Axis.horizo​​ntal,或替换为以下代码

Widget offerRow = new SingleChildScrollView(scrollDirection: Axis.horizontal,
child: Row(
  //shrinkWrap: true,
  //scrollDirection: Axis.horizontal,
  mainAxisAlignment: MainAxisAlignment.spaceEvenly,
  children: <Widget>[
    Row(
      children: [
        offer1,
        VerticalDivider(),
        offer2,
      ],
    ),
  ],
),);

关于android - Flutter-ListView 溢出,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51997936/

有关android - Flutter-ListView 溢出的更多相关文章

  1. 安卓apk修改(Android反编译apk) - 2

    最近因为项目需要,需要将Android手机系统自带的某个系统软件反编译并更改里面某个资源,并重新打包,签名生成新的自定义的apk,下面我来介绍一下我的实现过程。APK修改,分为以下几步:反编译解包,修改,重打包,修改签名等步骤。安卓apk修改准备工作1.系统配置好JavaJDK环境变量2.需要root权限的手机(针对系统自带apk,其他软件免root)3.Auto-Sign签名工具4.apktool工具安卓apk修改开始反编译本文拿Android系统里面的Settings.apk做demo,具体如何将apk获取出来在此就不过多介绍了,直接进入主题:按键win+R输入cmd,打开命令窗口,并将路

  2. ruby - 如何模拟 Fixnum 变量的整数溢出? - 2

    我目前正在将一种算法从Java转换为Ruby,但由于Ruby中缺少整数溢出,我遇到了一些障碍。假设我的值为2663860877,它大于最大整数2147483648。在Java中,它环绕,我应该得到-1631106419。我找到了这段代码,但它似乎不起作用:defforce_overflow(i)ifi2147483647i&0xffffffffelseiendend并且'ing变量不会像您期望的那样强制它为负。 最佳答案 假设32位整数具有二进制补码负数,这应该可行:defforce_overflow_signed(i)force_

  3. Flutter 环境变量配置和flutter doctor中的错误解决 - 2

    一、环境变量右键点击我的电脑-属性:然后找到环境变量 1.Android的SDK不在C盘的话需要额外配这个到用户环境变量:ANDROID_HOMED:\AndroidSDK2.然后在系统变量:Path中添加一条这样的值        D:\Flutter\flutter\bin             这个值写flutter包解压的实际地址即可 3.在系统变量中添加两个镜像变量:        变量名:FLUTTER_STORAGE_BASE_URL      变量值:https://storage.flutter-io.cn        变量名:PUB_HOSTED_URL      变量

  4. Android Studio开发之使用内容组件Content获取通讯信息讲解及实战(附源码 包括添加手机联系人和发短信) - 2

    运行有问题或需要源码请点赞关注收藏后评论区留言一、利用ContentResolver读写联系人在实际开发中,普通App很少会开放数据接口给其他应用访问。内容组件能够派上用场的情况往往是App想要访问系统应用的通讯数据,比如查看联系人,短信,通话记录等等,以及对这些通讯数据及逆行增删改查。首先要给AndroidMaifest.xml中添加响应的权限配置 下面是往手机通讯录添加联系人信息的例子效果如下分成三个步骤先查出联系人的基本信息,然后查询联系人号码,再查询联系人邮箱代码 ContactAddActivity类packagecom.example.chapter07;importandroid

  5. Android 10.0 设置默认launcher后安装另外launcher后默认Launcher失效的功能修复 - 2

    1.前言 在10.0的系统rom定制化开发中,在系统中有多个launcher的时候,会在开机进入launcher的时候弹窗launcher列表,让用户选择进入哪个launcher,这样显得特别的不方便所以产品开发中,要求用RoleManager的相关api来设置默认Launcher,但是在设置完默认Launcher以后,在安装一款Launcher的时候,默认Launcher就会失效,在系统设置的默认应用中Launcher选项就为空,点击home键的时候会弹出默认Launcher列表,让选择进入哪个默认Launcher.所以需要从安装Launcher的流程来分析相关的设置。来解决问题设置默认La

  6. AiBote 2022 新研发的自动化框架,支持 Android 和 Windows 系统。速度非常快 - 2

    Ai-Bot基于流行的Node.js和JavaScript语言的一款新自动化框架,支持Windows和Android自动化。1、Windowsxpath元素定位算法支持支持Windows应用、.NET、WPF、Qt、Java和Electron客户端程序和ie、edgechrome浏览器2、Android支持原生APP和H5界面,元素定位速度是appium十倍,无线远程自动化操作多台安卓设备3、基于opencv图色算法,支持找图和多点找色,1080*2340全分辨率找图50MS以内4、内置免费OCR人工智能技术,无限制获取图片文字和找字功能。5、框架协议开源,除官方node.jsSDK外,用户可

  7. Android Gradle 7.1+新版本依赖变化 - 2

    前一段时间由于工作需要把可爱的小雪狐舍弃了,找到了小蜜蜂。但是新版本的小蜜蜂出现了很多和旧版本不一样的位置。1.功能位置迁移,原来在工程build.gradle的buildscript和allprojects移动至setting.gradle并改名为pluginManagement和dependencyResolutionManagement。里面的东西依旧可以按照原来的copy过来。pluginManagement{repositories{gradlePluginPortal()google()mavenCentral()}}dependencyResolutionManagement{r

  8. ruby - Ruboto 的最佳教程(适用于 Android 的 ruby​​)? - 2

    关闭。这个问题不符合StackOverflowguidelines.它目前不接受答案。要求我们推荐或查找工具、库或最喜欢的场外资源的问题对于StackOverflow来说是偏离主题的,因为它们往往会吸引自以为是的答案和垃圾邮件。相反,describetheproblem以及迄今为止为解决该问题所做的工作。关闭9年前。Improvethisquestion我几乎用完了Ruby,但现在想试试Ruboto,android上的ruby​​。谷歌未能给我足够的(几乎没有结果)。所以任何人都可以分享一些关于Ruboto的教程。

  9. Android Studio 解决Could not resolve com.android.tools.build:gradle:7.4.2问题 - 2

    Aproblemoccurredconfiguringrootproject'MyApplication2'.>Couldnotresolveallfilesforconfiguration':classpath'.  >Couldnotresolvecom.android.tools.build:gradle:7.4.2.   Requiredby:     project:>com.android.application:com.android.application.gradle.plugin:7.4.2     project:>com.android.library:com.andr

  10. Android对话框的详细介绍(提示对话框,自定义对话框) - 2

    简介:我们都知道在Android开发中,当我们的程序在与用户交互时,用户会得到一定的反馈,其中以对话框的形式的反馈还是比较常见的,接下来我们来介绍几种常见的对话框的基本使用。前置准备:(文章最后附有所有代码)我们首先先写一个简单的页面用于测试这几种Dialog(对话框)代码如下,比较简单,就不做解释了一、提示对话框(即最普通的对话框)首先我们给普通对话框的按钮设置一个点击事件,然后通过AlertDialog.Builder来构造一个对象,为什么不直接Dialog一个对象,是因为Dialog是一个基类,我们尽量要使用它的子类来进行实例化对象,在实例化对象的时候,需要将当前的上下文传过去,因为我这

随机推荐