0

I am using flutter 1.4.19. In that when I tap on textfield it focus and my full widget I s reloading again. I don't want to reload that.

How to stop reload it except I call setstate() ??

Nimisha Ranipa
  • 8,304
  • 2
  • 14
  • 29

1 Answers1

0

There is many different cases where build method is rebuild:

  • When MediaQuery object is create
  • If screen is resize usually when Keyboard is appear and orientation change
  • setState() call
  • when you use Provider and notifyListener is called
Sanjayrajsinh
  • 15,014
  • 7
  • 73
  • 78