Презентация Widget, element and render Trees онлайн

На нашем сайте вы можете скачать и просмотреть онлайн доклад-презентацию на тему Widget, element and render Trees абсолютно бесплатно. Урок-презентация на эту тему содержит всего 8 слайдов. Все материалы созданы в программе PowerPoint и имеют формат ppt или же pptx. Материалы и темы для презентаций взяты из открытых источников и загружены их авторами, за качество и достоверность информации в них администрация сайта не отвечает, все права принадлежат их создателям. Если вы нашли то, что искали, отблагодарите авторов - поделитесь ссылкой в социальных сетях, а наш сайт добавьте в закладки.



Оцените!
Оцените презентацию от 1 до 5 баллов!
  • Тип файла:
    ppt / pptx (powerpoint)
  • Всего слайдов:
    8 слайдов
  • Для класса:
    1,2,3,4,5,6,7,8,9,10,11
  • Размер файла:
    486.38 kB
  • Просмотров:
    64
  • Скачиваний:
    0
  • Автор:
    неизвестен



Слайды и текст к этой презентации:

№1 слайд
M O D U L E V I R E V I E W
Содержание слайда: M O D U L E V I R E V I E W

№2 слайд
Widget, element and render
Содержание слайда: Widget, element and render Trees Flutter has a structure consisting of 3 trees. This is a widget tree, an element tree, and a render tree. We can only manage the widget tree. The other two are controlled by the flutter itself, but are controlled by the widget tree. Flutter automatically creates an element tree based on your widget tree and links your widgets to actual rendered objects. For each widget that you have in the widget tree, Flutter automatically creates an element. This happens when he first encounters this widget, Whenever Flutter encounters a widget for which it does not yet have an element, it creates an element. The render tree is what we see on the screen.

№3 слайд
Содержание слайда:

№4 слайд
Using const where we can The
Содержание слайда: Using ‘const’ where we can The widget tree is being rebuilt all the time. On the one hand, this is very good, but on the other, it is still a resource cost. But we can optimize our code! And one option is to use const. Before each widget or widget attribute, which will definitely not change, we can put a constant and then when rebuilding the widget tree, resources will not be spent on rendering the same widgets and attributes. Flutter will just take the old values.

№5 слайд
What is good code?
Содержание слайда: What is good code? Readability. You will have to be able to understand your code so that you can maintain and change it. Performance. Using features like const. Use of newer technologies. Another feature of good code is the extraction of important and large widgets in a separate file.

№6 слайд
Widget lifecycle
Содержание слайда: Widget lifecycle

№7 слайд
App Lifecycle
Содержание слайда: App Lifecycle

№8 слайд
What is context? In Flutter,
Содержание слайда: What is context? In Flutter, every widget has its own context. It's some meta information about the widget and its location in the widget tree. So context is used internally by Flutter to understand where this widget belongs and all the contexts of all the widgets. The contexts build a skeleton of your widget tree.

Скачать все slide презентации Widget, element and render Trees одним архивом: