草庐IT

flutter - 尝试使部分页面滚动时出错

coder 2023-07-23 原文

当我尝试通过添加 SingleChildScrollView 使页面的一部分能够滚动时,我不断收到错误消息。

这就是现在的样子:

所以红线之间的部分是我希望能够滚动的部分,因为我稍后会添加更多内容。这是我当前的代码:

class _NonAdminFlightPageState extends State<NonAdminFlightPage> {
  @override
  void initState() {
    super.initState();
  }

  String _dateSelected = null; 

 @override
 Widget build(BuildContext context) {
   return Scaffold(
     backgroundColor: blue,
     body: 
     SingleChildScrollView(
       child: Center(
         child:Stack(
           children: <Widget>[
            Align(
              alignment: Alignment.center,
              child: Container(
                height: MediaQuery.of(context).size.height,
                width: MediaQuery.of(context).size.width,
                decoration: BoxDecoration(
                  image: DecorationImage(
                    image: AssetImage(
                    "assets/images/FlightBackground.jpg",
                    ),
                    fit: BoxFit.fitHeight,
                  ), 
                )
              ),
            ), 
            Align(
              alignment: Alignment.center,
              child: Container(
                height: MediaQuery.of(context).size.height,
                width: MediaQuery.of(context).size.width,
                decoration:BoxDecoration(color: blueTrans),),
            ),
            Align(
              alignment:Alignment.center,
              child:  Container(       
                height: MediaQuery.of(context).size.height,
                width: MediaQuery.of(context).size.width/1.2,
                child:   Column(
                  mainAxisAlignment: MainAxisAlignment.center,
                  crossAxisAlignment: CrossAxisAlignment.stretch,
                  children: <Widget>[
                    Expanded(flex:2,child: SizedBox(),),
                    StreamBuilder<QuerySnapshot>(
                      stream: Firestore.instance
                      .collection("Users")
                      .document(widget.userEmail)
                      .collection("Flight Data")
                      .document("Courses")
                      .collection(widget.courseAbbr)
                      .snapshots(),
                      builder: (context, snapshot){
                        if (snapshot.hasError) return new Text('${snapshot.error}');
                        if(snapshot.connectionState == ConnectionState.waiting) {
                          return Center(child: CircularProgressIndicator(valueColor: AlwaysStoppedAnimation<Color>(white),)); 
                        }
                        return Theme(
                          data: ThemeData(canvasColor: blackTrans2, brightness: Brightness.dark),
                          child:Container(
                            decoration: BoxDecoration(
                            color: blackTrans,
                            borderRadius: BorderRadius.all(Radius.circular(5.0)),
                            ),   
                            child:DropdownButtonHideUnderline(
                              child: ButtonTheme(
                                alignedDropdown: true,
                                child: DropdownButton(
                                  value: _dateSelected,
                                  hint: AutoSizeText(NA_FLIGHT_PAGE_DROPDOWN, style: TextStyle(color: white,),textAlign: TextAlign.center,),
                                  isDense: false,
                                  onChanged: (String newValue){
                                    setState(() {
                                    _dateSelected = newValue;
                                    });
                                  },
                                  items: snapshot.data.documents.map((DocumentSnapshot document){
                                    return DropdownMenuItem<String>(
                                      value: document.documentID,
                                      child: AutoSizeText(document.documentID, style: TextStyle(color: white,),textAlign: TextAlign.center,),
                                    );
                                  }).toList(),
                                ),
                              ),
                            )
                          )
                        );
                      },
                    ),
                    Expanded(child: SizedBox(),),
                    Expanded(
                      flex: 25,
                      child:StreamBuilder<DocumentSnapshot>(
                        stream: Firestore.instance
                          .collection("Users")
                          .document(widget.userEmail)
                          .collection("Flight Data")
                          .document("Courses")
                          .collection(widget.courseAbbr)
                          .document(_dateSelected).snapshots(),
                        builder: (context, snapshot){
                          if (snapshot.hasError) {
                            return new Text('${snapshot.error}');
                          } else if (!snapshot.hasData) {
                            return Center(child: CircularProgressIndicator(valueColor: AlwaysStoppedAnimation<Color>(white),));
                          } else {  
                            switch (snapshot.connectionState) {
                              case ConnectionState.waiting:
                                return Center(child: CircularProgressIndicator(valueColor: AlwaysStoppedAnimation<Color>(white),)); 
                              default:
                                var doc = snapshot.data;
                                // can execute animation here to make select flight glow
                                if (_dateSelected == null) {
                                  return (Center(child: SizedBox(),));
                                }
                                return Column(
                                  children: <Widget>[
                                    Expanded(
                                      flex: 8,
                                      child: Container(
                                        decoration: BoxDecoration(
                                          color: blackTrans,
                                          borderRadius: BorderRadius.all(Radius.circular(5.0)),
                                          ),
                                        child: Column(
                                          children: <Widget>[
                                            Expanded(child: SizedBox(),),
                                            Expanded(flex:1,child:AutoSizeText(NA_FLIGHT_PAGE_PATTERN, style: TextStyle(color: white,),textAlign: TextAlign.center,),), 
                                            Expanded(child:Divider(color: white,)),
                                            Expanded(flex:8,child:ListView.builder(
                                              padding: EdgeInsets.only(top: 0.0),
                                              scrollDirection: Axis.vertical,
                                              shrinkWrap: false,
                                              itemCount: _dateSelected == null ? 0 : doc["patterns"].length ,
                                              itemBuilder: (BuildContext context, int index) {
                                                var patterns = doc["patterns"];
                                                return buildPatternTile(patterns[index]);                
                                              }
                                            ),),
                                            Expanded(child: SizedBox(),),                                              
                                          ],
                                        ),
                                      ),
                                    ),                                    
                                  ],
                                );
                            }                 
                          } 
                        },
                      ),
                    ),
                    Expanded(child: SizedBox(),),                             
                  ],
                ),
              ),
            ),
           ],
         )
        )
     )
   );
 }

我尝试过的:

Expanded(
  flex: 25,                    
  child:SingleChildScrollView(
   child:StreamBuilder<DocumentSnapshot>(
.....

我试图将第二个 StreamBuilder 包装在 SingleChildScrollView 中,但我抛出了这个异常:

I/flutter ( 2714): Another exception was thrown: RenderFlex children have non-zero flex but incoming height constraints are unbounded.
I/flutter ( 2714): Another exception was thrown: RenderBox was not laid out: RenderFlex#bafcc relayoutBoundary=up1 NEEDS-PAINT
I/flutter ( 2714): Another exception was thrown: RenderBox was not laid out: RenderFlex#bafcc relayoutBoundary=up1 NEEDS-PAINT

我设法使用 ListView 使我想要的部分可滚动,但是这是使用 FIXED 容器大小和 MediaQuery for Patterns完成。有没有办法在不固定高度的情况下这样做?正如你所看到的,当我固定高度时有一些额外的未使用空间:

Expanded(
  flex: 25,
  child:StreamBuilder<DocumentSnapshot>(
    stream: Firestore.instance
      .collection("Users")
      .document(widget.userEmail)
      .collection("Flight Data")
      .document("Courses")
      .collection(widget.courseAbbr)
      .document(_dateSelected).snapshots(),
    builder: (context, snapshot){
      if (snapshot.hasError) {
        return new Text('${snapshot.error}');
      } else if (!snapshot.hasData) {
        return Center(child: CircularProgressIndicator(valueColor: AlwaysStoppedAnimation<Color>(white),));
      } else {  
        switch (snapshot.connectionState) {
          case ConnectionState.waiting:
            return Center(child: CircularProgressIndicator(valueColor: AlwaysStoppedAnimation<Color>(white),)); 
          default:
            var doc = snapshot.data;
            // can execute animation here to make select flight glow
            if (_dateSelected == null) {
              return (Center(child: SizedBox(),));
            }
            return ListView(
              children: <Widget>[
                Container(
                  height: MediaQuery.of(context).size.height*2/3,
                  decoration: BoxDecoration(
                    color: blackTrans,
                    borderRadius: BorderRadius.all(Radius.circular(5.0)),
                    ),
                  child: ListView.builder(
                    padding: EdgeInsets.only(top: 0.0),
                    scrollDirection: Axis.vertical,
                    shrinkWrap: false,
                    itemCount: _dateSelected == null ? 1 : doc["patterns"].length + 1,
                    itemBuilder: (BuildContext context, int index) {
                      if (index == 0) {
                        return Column(
                          children: <Widget>[
                            ListTile(
                              selected: false,
                              title: AutoSizeText(
                                NA_FLIGHT_PAGE_PATTERN,
                                maxLines: 1,
                                style: TextStyle(
                                  color: white,
                                ),
                                textAlign: TextAlign.center,
                              ),
                            ),
                            Divider(color: white,)
                          ],
                        );
                      }
                      index -= 1;
                      var patterns = doc["patterns"];
                      return buildPatternTile(patterns[index]);                
                    }
                  ),
                ),                                   
              ],
            );
        }                 
      } 
    },
  ),
),

最佳答案

SingleChildScrollView当你只有一个盒子时使用。我会建议你使用 ListView

这里是你可以直接表达观点的例子

ListView(
  padding: const EdgeInsets.all(8.0),
  children: <Widget>[
    Container(
      height: 50,
      color: Colors.amber[600],
      child: const Center(child: Text('Entry A')),
    ),
    Container(
      height: 50,
      color: Colors.amber[500],
      child: const Center(child: Text('Entry B')),
    ),
    Container(
      height: 50,
      color: Colors.amber[100],
      child: const Center(child: Text('Entry C')),
    ),
  ],
)

如果您想在多个小部件之间 ScrollView ,这是最好的方法

关于flutter - 尝试使部分页面滚动时出错,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56765119/

有关flutter - 尝试使部分页面滚动时出错的更多相关文章

  1. ruby - ECONNRESET (Whois::ConnectionError) - 尝试在 Ruby 中查询 Whois 时出错 - 2

    我正在用Ruby编写一个简单的程序来检查域列表是否被占用。基本上它循环遍历列表,并使用以下函数进行检查。require'rubygems'require'whois'defcheck_domain(domain)c=Whois::Client.newc.query("google.com").available?end程序不断出错(即使我在google.com中进行硬编码),并打印以下消息。鉴于该程序非常简单,我已经没有什么想法了-有什么建议吗?/Library/Ruby/Gems/1.8/gems/whois-2.0.2/lib/whois/server/adapters/base.

  2. ruby - 在 64 位 Snow Leopard 上使用 rvm、postgres 9.0、ruby 1.9.2-p136 安装 pg gem 时出现问题 - 2

    我想为Heroku构建一个Rails3应用程序。他们使用Postgres作为他们的数据库,所以我通过MacPorts安装了postgres9.0。现在我需要一个postgresgem并且共识是出于性能原因你想要pggem。但是我对我得到的错误感到非常困惑当我尝试在rvm下通过geminstall安装pg时。我已经非常明确地指定了所有postgres目录的位置可以找到但仍然无法完成安装:$envARCHFLAGS='-archx86_64'geminstallpg--\--with-pg-config=/opt/local/var/db/postgresql90/defaultdb/po

  3. 使用 ACL 调用 upload_file 时出现 Ruby S3 "Access Denied"错误 - 2

    我正在尝试编写一个将文件上传到AWS并公开该文件的Ruby脚本。我做了以下事情:s3=Aws::S3::Resource.new(credentials:Aws::Credentials.new(KEY,SECRET),region:'us-west-2')obj=s3.bucket('stg-db').object('key')obj.upload_file(filename)这似乎工作正常,除了该文件不是公开可用的,而且我无法获得它的公共(public)URL。但是当我登录到S3时,我可以正常查看我的文件。为了使其公开可用,我将最后一行更改为obj.upload_file(file

  4. ruby-on-rails - 每次我尝试部署时,我都会得到 - (gcloud.preview.app.deploy) 错误响应 : [4] DEADLINE_EXCEEDED - 2

    我是Google云的新手,我正在尝试对其进行首次部署。我的第一个部署是RubyonRails项目。我基本上是在关注thisguideinthegoogleclouddocumentation.唯一的区别是我使用的是我自己的项目,而不是他们提供的“helloworld”项目。这是我的app.yaml文件runtime:customvm:trueentrypoint:bundleexecrackup-p8080-Eproductionconfig.ruresources:cpu:0.5memory_gb:1.3disk_size_gb:10当我转到我的项目目录并运行gcloudprevie

  5. ruby - 使用 postgres.app 在 rvm 下要求 pg 时出错 - 2

    我正在使用Postgres.app在OSX(10.8.3)上。我已经修改了我的PATH,以便应用程序的bin文件夹位于所有其他文件夹之前。Rammy:~phrogz$whichpg_config/Applications/Postgres.app/Contents/MacOS/bin/pg_config我已经安装了rvm并且可以毫无错误地安装pggem,但是当我需要它时我得到一个错误:Rammy:~phrogz$gem-v1.8.25Rammy:~phrogz$geminstallpgFetching:pg-0.15.1.gem(100%)Buildingnativeextension

  6. ruby-on-rails - 为什么在安装 Ruby 1.9.3 时出现 404 错误? - 2

    我最近对我的计算机(OS-MacOSX10.6.8)进行了删除,并且我正在重新安装我所有的开发工具。我再次安装了RVM;但是,它不会让我安装Ruby1.9.3。到目前为止我已经尝试过:rvminstall1.9.3rvm安装1.9.3-p194rvm安装1.9.3-p448rvminstall1.9.3--with-gcc=clang所有返回相同的命令行错误:Searchingforbinaryrubies,thismighttakesometime.Nobinaryrubiesavailablefor:osx/10.6/x86_64/ruby-1.9.3-p448.Continuin

  7. objective-c - 在设置 Cocoa Pods 和安装 Ruby 更新时出错 - 2

    我正在尝试为我的iOS应用程序设置cocoapods但是当我执行命令时:sudogemupdate--system我收到错误消息:当前已安装最新版本。中止。当我进入cocoapods的下一步时:sudogeminstallcocoapods我在MacOS10.8.5上遇到错误:ERROR:Errorinstallingcocoapods:cocoapods-trunkrequiresRubyversion>=2.0.0.我在MacOS10.9.4上尝试了同样的操作,但出现错误:ERROR:Couldnotfindavalidgem'cocoapods'(>=0),hereiswhy:U

  8. ruby-on-rails - 使用 Rails 2.3.5 运行 Thinking Sphinx 时出现问题 - 2

    我刚刚安装了Sphinx(发行版:archlinux)并下载了源代码。然后我为Rails安装了“ThinkingSphinx”插件。我关注了officialpagesetup和thisScreencastfromRyanBates,但是当我尝试为模型建立索引时,出现了这个错误:$rakethinking_sphinx:index(in/home/benoror/Dropbox/Proyectos/cotizahoy)Sphinxcannotbefoundonyoursystem.Youmayneedtoconfigurethefollowingsettingsinyourconfig/

  9. ruby-on-rails - 使用 HTTP.get_response 检索 Facebook 访问 token 时出现 Rails EOF 错误 - 2

    我试图在我的网站上实现使用Facebook登录功能,但在尝试从Facebook取回访问token时遇到障碍。这是我的代码:ifparams[:error_reason]=="user_denied"thenflash[:error]="TologinwithFacebook,youmustclick'Allow'toletthesiteaccessyourinformation"redirect_to:loginelsifparams[:code]thentoken_uri=URI.parse("https://graph.facebook.com/oauth/access_token

  10. ruby - 在 ASP 页面上 Mechanize 中断 - 2

    require'mechanize'agent=Mechanize.newlogin=agent.get('http://www.schoolnet.ch/DE/HomeDE.htm')agent.clicklogin.link_withtext:/Login/然后我得到Mechanize::UnsupportedSchemeError。 最佳答案 Mechanize不支持javascript但您可以将搜索字段添加到表单并为其分配搜索词并使用mechanize提交表单form=page.forms.firstform.add_fie

随机推荐