Code Monkey home page Code Monkey logo

flutter_movie's Introduction

Hi there 👋

kwangwoo’s github stats

flutter_movie's People

Contributors

presto95 avatar ykw93 avatar

Stargazers

 avatar  avatar  avatar

Watchers

 avatar  avatar

flutter_movie's Issues

Futurebuilder 중복 사용

현재 영화 정보와 review 정보 두개를 가져와야 되는 상황인데
FutureBuilder 안에 FutureBuilder를 넣고 뷰 작업을 했는데
다른 좋은 방법이 있을지..

문제점 1.

  • CustomScrollView 안에 FutureBuilder를 넣고 FutureBuilder안에 SliverList를 사용하려 했는데 CustomScrollView 자녀는 반드시 Sliver를 사용해야 되는거 같음(계속 오류 뜸..)

문제점 2.
SliverList안에 FutureBuilder를 넣자고 하니 childCount값을 설정할 수가 없음...

ex)

SliverList(
            delegate: SliverChildBuilderDelegate((context, index) {
              return FutureBuilder<Review>(
                future: _getReviewData(),
                builder: (context, snapshot) {
                  switch (snapshot.connectionState) {
                    case ConnectionState.none:
                    case ConnectionState.waiting:
                      return TabPage.showLoading();
                    default:
                      if (snapshot.hasError)
                        return Text('Error : ${snapshot.error}');
                      else
                      return Text('Test');
                  }
                },
              );
            }, childCount: ??..),
          )

GirdView item 에 이미지 적용 시 버그가 발생되는 문제

GridView 에서 아이템(이미지) 셋팅 시 화면이 깨지는?(Bottom overflowed by ** pixels error) 현상이 일어나는문제
해결방법은 GridView 속성에 childAspectRatio (가로 / 세로) 비율값을 잘 지정해주면 에러는 잘 해결 되지만 문제는 이런 비율값을 어떤방법으로 구하고 지정하는? 방법을 찾아볼 필요가 있음.

TextFormField issue

TextFormField에서 텍스트 줄이 길어질 수록 크기(TextFormField 높이)가 늘어나지 않고 글자가 넘어가는 이슈

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.