mirror of
https://github.com/ByteWelder/Tactility.git
synced 2026-02-18 19:03:16 +00:00
482 B
482 B
Application Lifecycle
The app goes through these states:
Let's look at a scenario where an app launches another app:
firstapp starts:first.on_create()->first.on_show()secondapp starts:first.on_hide()->second.on_create()->second.on_show()secondapp stops:second.on_hide()->second.on_destroy()->first.on_show()firstapp stops:first.on_hide()->first.on_destroy()
