流生成器不经常更新

时间:2019-07-13 18:45:00

标签: flutter

我正在尝试流式注释(您可以在代码中看到)。但是流生成器没有更新,但是当我进行热重载时它会显示数据。我无法理解为什么流生成器仅在热重载后才显示数据?

我尝试过,但我不明白为什么使用流生成器会出现这种情况

<html>
  <head>
    <title>Tab switching divs template</title>
  </head>
<body>
<div style="height:330px; position:relative;width:80%;" class="clearfix">
  <p style="position:relative; margin-left: 3%; top:20px;"><strong>By Rogerio Brito Soares - Stackoverflow</strong></p>
  <section>
    <div class="tab" tabindex="0">
      <button>Tab #1</button>
      <div class="div">
        <h1>Content for Tab #1</h1>
        Name<br/>
        Galaxy<br/>
        Planet<br/>
        Continent<br/>
        Country<br/>
        State/region<br/>
        City<br/>
        Address<br/>
        ZIP Code
      </div>
    </div>
    <div class="tab" tabindex="0">
      <button>Tab #2</button>
      <div class="div">
        <h1>Content for Tab #2</h1>
        Occupation<br/>
        Children<br/>
        Marital Status<br/>
        Gender<br/>
        Yearly salary<br/>
        Age
      </div>
    </div>
    <div class="tab" tabindex="0">
      <button>Tab #3</button>
      <div class="div">
        <h1>Content for Tab #3</h1>
        Credit Card Number<br/>
        No of installments<br/>
        Receipt of Invoice<br/>
        Customer Service<br/>
        Hired Plan<br/>
        Hired Service Period
      </div>
    </div>
  </section>
</div>
</body>
</html> 

1 个答案:

答案 0 :(得分:0)

TL; DR

  

重构(简化)窗口小部件树。

有时是因为窗口小部件树而发生。尝试通过分析同一屏幕的窗口小部件树来重构。 就像您的流生成器​​无法保持自身更新(即,由于丢失了焦点或保持更新的原因,它不会持续检查后端的数据更改)。