【错误记录】Flutter 组件报错 ( No Directionality widget found. | RichText widgets require a Directionality )
生活随笔
收集整理的這篇文章主要介紹了
【错误记录】Flutter 组件报错 ( No Directionality widget found. | RichText widgets require a Directionality )
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
文章目錄
- 一、報錯信息
- 二、解決方案
一、報錯信息
報錯信息 :
Performing hot reload... Syncing files to device Pixel 2... Reloaded 0 libraries in 353ms.======== Exception caught by widgets library ======================================================= The following assertion was thrown building Text("動畫狀態 : null"): No Directionality widget found.RichText widgets require a Directionality widget ancestor.The specific widget that could not find a Directionality ancestor was: RichTextsoftWrap: wrapping at box widthmaxLines: unlimitedtext: "動畫狀態 : null"dirty The ownership chain for the affected widget is: "RichText ← Text ← Column ← Padding ← Container ← AnimationApp ← [root]"Typically, the Directionality widget is introduced by the MaterialApp or WidgetsApp widget at the top of your application widget tree. It determines the ambient reading direction and is used, for example, to determine how to lay out text, how to interpret "start" and "end" values, and to resolve EdgeInsetsDirectional, AlignmentDirectional, and other *Directional objects.The relevant error-causing widget was: Text file:///D:/002_Project/002_Android_Learn/flutter_animation/lib/main.dart:118:11 When the exception was thrown, this was the stack: #0 debugCheckHasDirectionality.<anonymous closure> (package:flutter/src/widgets/debug.dart:272:7) #1 debugCheckHasDirectionality (package:flutter/src/widgets/debug.dart:292:4) #2 RichText.createRenderObject (package:flutter/src/widgets/basic.dart:5539:37) #3 RenderObjectElement.mount (package:flutter/src/widgets/framework.dart:5423:28) #4 MultiChildRenderObjectElement.mount (package:flutter/src/widgets/framework.dart:6166:11) ... ============================================================================================================ Exception caught by widgets library ======================================================= No Directionality widget found. The relevant error-causing widget was: Text file:///D:/002_Project/002_Android_Learn/flutter_animation/lib/main.dart:120:11 ============================================================================================================ Exception caught by rendering library ===================================================== A RenderFlex overflowed by 199358 pixels on the bottom. The relevant error-causing widget was: Column file:///D:/002_Project/002_Android_Learn/flutter_animation/lib/main.dart:96:14 ====================================================================================================報錯組件 :
Text("動畫狀態 : $animationStatus"), Text("動畫值 : $animationValue"),二、解決方案
Flutter 中 Text 組件需要設置文本方向 ;
修改后的代碼為 :
Text("動畫狀態 : $animationStatus", textDirection: TextDirection.ltr,), Text("動畫值 : $animationValue", textDirection: TextDirection.ltr,),總結
以上是生活随笔為你收集整理的【错误记录】Flutter 组件报错 ( No Directionality widget found. | RichText widgets require a Directionality )的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 【错误记录】Android Studio
- 下一篇: 【Flutter】Animation 动