[Flutter] 겪는 오류 & 해결 방법 요약 ②

저번

  • [Flutter] 겪은 오류 & 해결 방법 총결
  • 다음번

  • [Flutter] 겪는 오류 & 해결 방법 요약 ③
  • [Flutter] AWS Amplify/Firebase 오류 요약
  • 참고 문헌

  • [fluter 초보자] ListView와 Gridview를 끼워넣기 (Vertical viewport was given unbounded height 오류)
  • [Flutter] TextField 터치 A RenderFlex overflowed by <XX>pixels on the bottom.출현시 대처법
  • [Flutter] 키보드 표시에서 RenderFlex overflowed 오류 제거
  • Firebase를 사용하는 경우 Firebase입니다.initialize App()의 이름
  • Dart의Firestore에서orderBy라면,왠지0개의snapshot을
  • [ListView 중첩 오류]


    ◆잘못된 내용


    The following assertion was thrown during performResize():
    Vertical viewport was given unbounded height.
    

    ◆해결책


    ListView(
      shrinkWrap: true,   //追加
      physics: NeverScrollableScrollPhysics(),  //追加
      children: _sample,
    )
    

    [시야 포트(표시 영역)의 좁은 오류]


    ◆잘못된 내용


    A RenderFlex overflowed by 92 pixels on the bottom.
    

    ◆해결책


    Widget build(BuildContext context) {
        return SingleChildScrollView(   //追加
          child: Column(
            ),
        );
    }
    

    [Firebase.initialize App()가 완성되면 runApp의 방법]


    ◆해결책


    void main() async {
      WidgetsFlutterBinding.ensureInitialized();   //追加
      await Firebase.initializeApp();
      runApp(MyApp());
    }
    

    [파이어스토어를 통해 orderBy를 진행하는 방법!]


    ◆해결책


    void getList() {
        Firestore.instance
            .collection("sample")
            .where("active", isEqualTo: "running")
            .orderBy("createdAt", descending: true)  //orderBy
            .snapshots()
    

    좋은 웹페이지 즐겨찾기